/* Responsive Styles */

@media (max-width: 768px) {
  /* Header */
  .site-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .main-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .main-nav a {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .book-cover {
    display: flex;
    justify-content: center;
  }

  .book-cover img {
    max-width: 300px;
  }

  .pull-quote {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* About Book */
  .about-book {
    padding: 40px 0;
  }

  .about-book h2 {
    font-size: 28px;
  }

  .about-content-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content p,
  .about-content-two-column p,
  .brothers-list li {
    font-size: 16px;
  }

  .about-content .lead {
    font-size: 18px;
  }

  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }

  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .book-cover img {
    max-width: 250px;
  }

  .pull-quote {
    font-size: 16px;
    padding: 15px;
  }

  .brothers-list li {
    padding: 15px;
  }
}

/* Tablet & Mobile - Additional Pages */
@media (max-width: 768px) {
  /* Reviews Page */
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card.featured,
  .review-card.long {
    grid-column: span 1;
  }

  .review-text {
    font-size: 15px;
  }

  .review-card.featured .review-text {
    font-size: 18px;
  }

  /* Translations Page */
  .translations-grid {
    grid-template-columns: 1fr;
  }

  .translation-card {
    padding: 25px;
  }

  /* Contact Page */
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  /* Media Page */
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-item.featured {
    grid-column: span 1;
  }

  /* Webinars */
  .webinar-card {
    padding: 20px;
  }

  /* About Page */
  .author-photo {
    width: 150px;
    height: 150px;
  }

  .author-bio p {
    font-size: 16px;
  }

  .cta-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  /* General */
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  /* Reviews */
  .reviews-page h1 {
    font-size: 36px !important;
  }

  /* Translations */
  .translations-page h1 {
    font-size: 32px !important;
  }

  .flag-icon {
    font-size: 36px;
  }

  /* Contact Form */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Media Page */
  .logo-placeholder {
    font-size: 16px;
  }
}

/* Enhanced Footer - Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Newsletter Mobile Responsive */
@media (max-width: 600px) {
  .newsletter-signup {
    padding: 60px 0;
  }

  .newsletter-signup h2 {
    font-size: 28px;
  }

  .newsletter-description {
    font-size: 16px;
  }

  .form-inline {
    flex-direction: column;
  }

  .form-inline button {
    width: 100%;
  }
}
