/* Custom styles to override the theme */

/* Header logo styling */
.header a.header-logo {
  display: flex !important;
  align-items: center !important;
  text-transform: none !important;
  font-weight: normal !important;
}

.header a.header-logo img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  vertical-align: middle !important;
  border: 2px solid var(--heading-color) !important;
  margin-right: 10px !important;
}

.header a.header-logo span {
  display: inline-block !important;
  vertical-align: middle !important;
  font-weight: bold !important;
  margin-left: 5px !important;
  font-size: 16px !important;
  color: var(--heading-color) !important;
  text-transform: none !important;
}

/* Hero Section */
.hero {
  background-color: #f8f9fa !important;
  padding: 80px 20px !important;
  text-align: center !important;
  margin-bottom: 50px !important;
  border-radius: 8px !important;
}

.hero-content {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.hero h1 {
  font-size: 3rem !important;
  margin-bottom: 20px !important;
  color: var(--heading-color) !important;
}

.red-dot {
  color: #D91944 !important;
  font-size: 3rem !important;
  font-weight: bold !important;
}

.hero .hero-content .hero-description {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  margin-bottom: 30px !important;
  color: var(--text-color) !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

.hero-description p {
  margin-bottom: 1.2rem !important;
  font-size: 1.4rem !important;
}

.hero-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
}

.button {
  display: inline-block !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.button-primary {
  background-color: var(--heading-color) !important;
  color: white !important;
}

.button-primary:hover {
  background-color: #b81539;
  text-decoration: none;
  transform: scale(1.05);
}

.button-secondary {
  background-color: transparent !important;
  color: var(--heading-color) !important;
  border: 2px solid var(--heading-color) !important;
}

.button-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-2px) !important;
}

/* About Page Styling */
.about-content {
  margin-bottom: 60px !important;
}

.about-content h2 {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  color: var(--heading-color) !important;
  font-size: 1.8rem !important;
}

.about-content h3 {
  margin-top: 30px !important;
  margin-bottom: 15px !important;
  color: var(--heading-color) !important;
  font-size: 1.4rem !important;
}

.about-content ul {
  margin-bottom: 30px !important;
}

.about-content li {
  margin-bottom: 10px !important;
}

/* App Screenshots Section */
.app-showcase {
  margin: 60px 0 !important;
  padding: 40px !important;
  background-color: #f8f9fa !important;
  border-radius: 8px !important;
}

.app-showcase h2 {
  text-align: center !important;
  margin-bottom: 30px !important;
}

.screenshot-gallery {
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

.screenshot {
  flex: 1 !important;
  min-width: 250px !important;
  text-align: center !important;
}

.screenshot img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 10px !important;
}

.screenshot p {
  font-weight: 500 !important;
  color: #555 !important;
}

/* Testimonials Section */
.testimonials {
  margin: 60px 0 !important;
}

.testimonials h2 {
  text-align: center !important;
  margin-bottom: 30px !important;
}

.testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 30px !important;
}

.testimonial {
  background-color: #fff !important;
  border-radius: 8px !important;
  padding: 25px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.testimonial-content {
  font-style: italic !important;
  margin-bottom: 15px !important;
  color: #444 !important;
}

.testimonial-author {
  text-align: right !important;
  color: #666 !important;
  font-size: 0.9rem !important;
}

/* Download CTA Section */
.download-cta {
  margin: 60px 0 !important;
  padding: 50px !important;
  background-color: var(--heading-color) !important;
  color: white !important;
  text-align: center !important;
  border-radius: 8px !important;
}

.download-cta h2 {
  color: white !important;
  margin-bottom: 20px !important;
}

.download-cta p {
  margin-bottom: 30px !important;
  font-size: 1.2rem !important;
}

.cta-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.cta-buttons .button-primary {
  background-color: white !important;
  color: var(--heading-color) !important;
}

.cta-buttons .button-primary:hover {
  background-color: #f0f0f0 !important;
}

/* Professional Typography Enhancements */
body {
  line-height: 1.7 !important;
  letter-spacing: 0.01em !important;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em !important;
  margin-bottom: 1.2rem !important;
}

h1 {
  font-size: 2.5rem !important;
}

h2 {
  font-size: 2rem !important;
}

p {
  margin-bottom: 1.5rem !important;
}

/* Content Styling */
.content {
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* Card-like styling for posts */
.summary {
  background-color: #ffffff !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.summary:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

.summary-title a {
  color: var(--heading-color) !important;
  text-decoration: none !important;
}

.summary-date {
  color: #666 !important;
  font-size: 0.9rem !important;
  margin-bottom: 10px !important;
}

.summary-description {
  color: #444 !important;
}

/* Footer styling */
.footer {
  padding: 40px 0 !important;
  margin-top: 50px !important;
  border-top: 1px solid #eaeaea !important;
  text-align: center !important;
}

.footer-social {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.footer-social a {
  margin: 0 10px !important;
  color: #555 !important;
  transition: color 0.2s ease !important;
}

.footer-social a:hover {
  color: var(--heading-color) !important;
}

.footer-copyright {
  font-size: 0.9rem !important;
  color: #666 !important;
}

.footer-links {
  margin-top: 10px !important;
}

.footer-links a {
  color: #555 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.footer-links a:hover {
  color: var(--heading-color) !important;
  text-decoration: underline !important;
}

/* Menu styling */
.menu-main ul li a {
  font-weight: 500 !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: background-color 0.2s ease !important;
}

.menu-main ul li a:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}

.menu-main ul li.active a {
  font-weight: 700 !important;
  color: var(--heading-color) !important;
}

.menu-main ul li a span {
  white-space: nowrap;
}

a.button-primary,
.menu-main .start-button a {
  background-color: #D91944;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-main .start-button a:hover {
  background-color: #000 !important;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

a.button-primary:hover {
  background-color: #b81539;
  text-decoration: none;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px !important;
  }
  
  .hero h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-description {
    font-size: 1.2rem !important;
  }
  
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .button {
    width: 100% !important;
    max-width: 250px !important;
    margin-bottom: 10px !important;
  }
  
  .screenshot-gallery {
    flex-direction: column !important;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  
  .cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* Download Page Styling */
.page-download .page-content {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.download-content {
  margin-bottom: 60px !important;
}

.beta-form {
  background-color: #f8f9fa !important;
  padding: 30px !important;
  border-radius: 8px !important;
  margin-top: 40px !important;
}

.form-group {
  margin-bottom: 25px !important;
}

.form-group label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 500 !important;
  color: var(--heading-color) !important;
}

.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  transition: border-color 0.3s ease !important;
}

.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--heading-color) !important;
  outline: none !important;
}

.platform-options {
  display: flex !important;
  gap: 20px !important;
}

.platform-option {
  display: flex !important;
  align-items: center !important;
}

.platform-option input[type="radio"] {
  margin-right: 8px !important;
}

.form-submit {
  margin-top: 30px !important;
}

.form-disclaimer {
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  color: #666 !important;
}

.form-success {
  background-color: #e8f5e9 !important;
  padding: 30px !important;
  border-radius: 8px !important;
  text-align: center !important;
}

.form-success h3 {
  color: #2e7d32 !important;
  margin-bottom: 15px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .platform-options {
    flex-direction: column !important;
    gap: 10px !important;
  }
} 