/* CSS Variables - Dark Theme (default) */
:root {
  /* Colors - Dark Theme */
  --primary: #c41230;        /* Cartier red */
  --primary-hover: #8B0000;
  --text: #e8d8b8;           /* Cream text */
  --text-light: #cccccc;     /* Light gray text */
  --text-muted: #999999;
  --bg: #000000;             /* Black background */
  --bg-dark: #1a1a1a;        /* Slightly lighter black */
  --bg-darker: #0a0a0a;      /* Darker black */
  --bg-gray: #2c2c2c;        /* Dark gray */
  --accent: #d4af37;         /* Gold accent */
  --card-bg: #1a1a1a;        /* Card background */
  --border-color: #333333;   /* Border color */
}

/* Light Theme Override (Blog, Media, Reviews, Translations, Contact, Webinars) */
body.theme-light {
  --bg: #f5f0e8;             /* Cream/beige background */
  --bg-dark: #f4ede4;
  --bg-darker: #ede4d8;
  --bg-gray: #e8dfd0;
  --text: #2c2c2c;           /* Dark gray text */
  --text-light: #4a4a4a;
  --text-muted: #666666;
  --card-bg: #ffffff;        /* White cards */
  --border-color: #d0c4b0;   /* Light border */
  --primary: #c41230;        /* Cartier red */
  --primary-hover: #8B0000;
  --accent: #d4af37;         /* Gold accent */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}

.main-nav,
.site-header,
button,
.btn {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #000000;  /* Black background like original */
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-logo {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 100%;
  transition: opacity 0.2s;
}

.site-logo:hover .logo-image {
  opacity: 0.9;
}

/* Header Layout */
.header-layout {
  position: relative;
}

.header-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Search Button */
.site-search-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.site-search-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-search-button svg {
  display: block;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.dark-mode-toggle svg {
  display: block;
}

.main-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  transition: opacity 0.2s;
  padding: 5px 6px;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 0.8;
  text-decoration: underline;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .site-search-button,
  .dark-mode-toggle {
    padding: 8px;
  }

  .site-search-button svg,
  .dark-mode-toggle svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 40px;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-height: 100vh;
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Hero Section */
.hero {
  padding: 40px 0 20px;
  background: #000000;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.book-cover img {
  width: 100%;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pull-quote {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--card-bg);
  border-left: 4px solid var(--primary);
}

.pull-quote footer {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  margin-top: 15px;
  text-align: right;
}

.translation-badge {
  margin-top: 20px;
  padding: 15px;
  background: var(--primary);
  color: white;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: white;
}

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

.about-book h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.about-content .lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}

.brothers-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  padding-left: 20px;
}

.brothers-list li {
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 1.8;
  color: white;
}

.publication-note {
  font-style: italic;
  padding: 20px;
  background: var(--bg-gray);
  margin-top: 30px;
}

/* Media Logos Section */
.media-logos {
  padding: 60px 0;
  background: #000000;
  text-align: center;
}

.media-logos h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

/* Footer Styles */
.site-footer {
  background: var(--text);
  color: white;
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.site-footer a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* Links */
a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-hover);
}

/* About Page */
.about-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: rgba(0, 0, 0, 0.6);
}

.about-hero h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-content {
  padding: 60px 0;
  text-align: center;
}

.author-photo-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
}

.author-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-section {
  text-align: center;
  padding: 40px;
  margin: 60px auto 0;
}

/* Webinars Page */
.webinars {
  padding: 80px 0;
}

.webinars h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.webinars .intro {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
  color: var(--text-light);
}

.webinar-list {
  max-width: 900px;
  margin: 0 auto;
}

.webinar-card {
  margin-bottom: 60px;
  padding: 30px;
  background: var(--bg-gray);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  border-radius: 4px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
}

.video-placeholder .note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

.webinar-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Reviews Page */
.reviews-page {
  padding: 80px 0;
}

.reviews-page h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
}

.reviews-page .intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  padding: 30px;
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.review-card.featured {
  grid-column: span 2;
  background: var(--bg-dark);
  border-left-width: 6px;
}

.review-card.long {
  grid-column: span 2;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text);
}

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

.review-source {
  font-size: 14px;
  font-style: normal;
  text-align: right;
  color: var(--text-light);
}

.review-source strong {
  color: var(--text);
  font-weight: 700;
}

/* Translations Page */
.translations-page {
  padding: 80px 0;
}

.translations-page h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.translations-page .intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.translations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.translation-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.translation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.translation-card a {
  display: block;
  margin-bottom: 20px;
}

.translation-card img {
  width: 100%;
  max-width: 200px;
  height: 300px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.2s;
}

.translation-card img.full-cover {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

.translation-card:hover img {
  transform: scale(1.03);
}

.translation-card.coming-soon {
  opacity: 0.7;
}

.translation-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.placeholder-cover {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-darker) 100%);
  border: 2px dashed var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.placeholder-cover span {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.flag-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.translation-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.translation-card .publisher {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  min-height: 40px;
}

.translation-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.translation-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.translation-info p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Translation Detail Page */
.translation-detail {
  padding: 60px 0;
}

.back-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

.translation-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.translation-cover-large {
  position: sticky;
  top: 100px;
}

.translation-cover-large img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.translation-info h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
}

.translation-info .subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.details {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item strong {
  color: var(--text);
  display: inline-block;
  min-width: 180px;
}

.description {
  margin-bottom: 40px;
}

.description h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.description p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .translation-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .translation-cover-large {
    position: static;
    text-align: center;
  }

  .translation-cover-large img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }

  .translation-info h1 {
    font-size: 32px;
  }

  .detail-item strong {
    display: block;
    margin-bottom: 5px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Blog Listing */
.blog-listing {
  padding: 80px 0;
}

.blog-listing h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
}

.blog-listing .intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.blog-posts {
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.post-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.read-more:hover {
  color: var(--primary-hover);
}

.no-posts {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-gray);
  border-radius: 8px;
}

.no-posts p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
}

.contact-page h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-page .intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--text);
}

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

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-note {
  margin-top: 20px;
  padding: 15px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  font-size: 14px;
}

.contact-info {
  background: var(--bg-gray);
  padding: 30px;
  border-radius: 8px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.info-section {
  margin-bottom: 35px;
}

.info-section h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.info-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.info-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.newsletter-signup {
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-form {
  margin-top: 15px;
}

.newsletter-input {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-input input {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  font-size: 15px;
}

.newsletter-input input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-input button {
  white-space: nowrap;
}

.newsletter-privacy {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.faq details {
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  user-select: none;
}

.faq summary:hover {
  color: var(--primary-hover);
}

.faq details[open] summary {
  margin-bottom: 12px;
}

.faq details p {
  margin: 0;
  padding-top: 10px;
}

.contact-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 30px;
  background: var(--bg-gray);
  border-radius: 8px;
  text-align: center;
}

.contact-footer h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-footer p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Media Page */
.media-hero {
  width: 100%;
  overflow: hidden;
  max-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.media-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 60px 20px 40px;
}

.media-hero .hero-overlay h1 {
  font-size: 72px;
  color: #ffffff;
  letter-spacing: 12px;
  margin: 0 0 10px 0;
  font-weight: 300;
  text-align: center;
}

.media-hero .hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 4px;
  margin: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.media-page {
  background: #000000;
  padding: 80px 0;
}

.media-page h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.media-page .intro {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 60px;
}

.media-section-title {
  color: #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.media-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(201, 169, 97, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(201, 169, 97, 0.2);
  border-color: rgba(201, 169, 97, 0.4);
}

.media-item.featured {
  grid-column: span 2;
  background: var(--bg-gray);
}

.media-logo {
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
  text-align: center;
}

.logo-placeholder {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
}

.media-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.media-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.media-link {
  color: #C9A961;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-link:hover {
  color: #D4B56D;
  text-decoration: underline;
}

.media-cta {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-gray);
  border-radius: 8px;
}

.media-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.media-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Homepage Video Section */
.hero-content-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.video-section {
  position: relative;
  width: 100%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Quote & CTA Section */
.quote-cta {
  padding: 60px 0;
  background: #000000;
  text-align: center;
}

.featured-quote {
  font-size: 22px;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
  color: white;
}

.featured-quote footer {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 20px;
  color: white;
}

/* Translations Gallery */
.translations-gallery {
  padding: 80px 0;
  background: #000000;
  text-align: center;
}

.translations-gallery h2 {
  color: white;
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 60px;
  font-weight: 300;
  font-style: italic;
}

.translation-covers {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

.translation-cover {
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.translation-cover img {
  height: 320px;
  width: auto;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.translation-cover:hover {
  transform: translateY(-8px);
  opacity: 0.8;
}

/* Media Logos Section */
.media-logos {
  padding: 60px 0;
  background: #000000;
  text-align: center;
}

.media-logos h3 {
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: white;
  font-weight: 400;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-grid a {
  display: block;
  transition: transform 0.2s, opacity 0.3s;
  opacity: 0.7;
}

.logo-grid a:hover {
  transform: scale(1.05);
  opacity: 1;
}

.logo-grid img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* About Book Section - Black Background */
.about-book {
  padding: 80px 0;
  background: #1a1a1a;
  color: #d4af37;  /* Gold text */
}

.about-book h2 {
  text-align: center;
  font-size: 42px;
  letter-spacing: 5px;
  margin-bottom: 50px;
  color: #d4af37;
  font-weight: 300;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content-two-column {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-content-two-column .column-left,
.about-content-two-column .column-right {
  font-size: 17px;
  line-height: 1.8;
}

.about-content p,
.about-content-two-column p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e8d8b8;  /* Lighter gold/cream */
}

.about-content .lead,
.about-content-two-column .lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 35px;
  color: #d4af37;
}

.about-content strong,
.about-content-two-column strong {
  color: #d4af37;
  font-weight: 700;
  font-style: italic;
}

.brothers-list strong {
  color: #d4af37;
  font-weight: 700;
  font-style: normal;
}

.brothers-list {
  margin: 30px 0;
  padding-left: 40px;
}

.brothers-list li {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #e8d8b8;
}

.brothers-list strong {
  color: #d4af37;
  font-size: 19px;
}

.publication-note {
  font-style: italic;
  margin-top: 40px;
  font-size: 16px;
  color: #c9b992;
}

/* Author Feature Section */
.author-feature {
  padding: 80px 0;
  background: var(--card-bg);
}

.author-image-large {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.author-image-large img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
  .hero-content-video {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .translation-covers {
    gap: 15px;
  }
  
  .translation-cover img {
    height: 150px;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .translations-gallery h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .about-book h2 {
    font-size: 32px;
  }
}

/* Cream Section with 3 Images */
.cream-section {
  padding: 80px 0;
  background: #f5f0e8;
}

.cream-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cream-image {
  text-align: center;
}

.cream-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.cream-image img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.cream-text {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cream-text p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #5a4a3a;
}

/* Red CTA Section */
.red-cta-section {
  padding: 60px 0;
  background: #8B0000;
  text-align: center;
}

.red-cta-section h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

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

.buy-button {
  display: inline-block;
  padding: 15px 40px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 4px;
  transition: all 0.3s;
}

.buy-button:hover {
  background: white;
  color: #8B0000;
}

@media (max-width: 768px) {
  .cream-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Enhanced Footer - Multi-column Layout */
.site-footer {
  background: #2c3e50;
  color: #a0a0a0;
  padding: 60px 0 40px;
  font-size: 13px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  display: block;
  color: #a0a0a0;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-social {
  flex-direction: row;
  gap: 20px;
}

.footer-social a {
  margin-bottom: 0;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #a0a0a0;
  transition: fill 0.2s;
}

.footer-social a:hover svg {
  fill: #ffffff;
}

.footer-info .copyright {
  font-size: 11px;
  margin-bottom: 15px;
  color: #a0a0a0;
}

.footer-info .bio {
  font-size: 11px;
  line-height: 1.6;
  font-style: italic;
  color: #888;
}


/* Quote card with decorative gold frame */
.cream-quote-card {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-frame {
  background: #f9f5ed;
  border: 3px solid #d4af37;
  border-radius: 3px;
  padding: 60px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.quote-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  border-color: #f0d464;
}

/* Decorative corner accents */
.quote-frame::before,
.quote-frame::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #d4af37;
}

.quote-frame::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.quote-frame::after {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.quote-text {
  font-family: 'Didot', 'Bodoni MT', 'Cochin', serif;
  font-size: 28px;
  line-height: 1.4;
  color: #c19a5b;
  margin: 0 0 20px 0;
  font-weight: 300;
}

.quote-divider {
  color: #d4af37;
  font-size: 16px;
  margin: 20px 0;
}

.quote-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c19a5b;
  margin: 15px 0 5px 0;
}

.quote-credit {
  font-size: 11px;
  color: #999;
  font-style: italic;
  margin: 0;
}


/* Blog Post Styles */
.blog-post {
  padding: 80px 0;
  background: #000000;
}

.post-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.post-header h1 {
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
}

.post-date {
  color: #999;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  color: #e8d8b8;
  font-size: 18px;
  line-height: 1.8;
}

.post-content img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.post-content p {
  margin-bottom: 25px;
}

.post-content h2 {
  color: #d4af37;
  font-size: 32px;
  margin: 40px 0 20px;
  font-weight: 300;
}

.post-content h3 {
  color: #d4af37;
  font-size: 24px;
  margin: 30px 0 15px;
  font-weight: 400;
}

.post-content strong {
  color: #d4af37;
  font-weight: 600;
}

.post-content em {
  font-style: italic;
  color: #f0e4c8;
}

.post-content a {
  color: #d4af37;
  text-decoration: underline;
}

.post-content a:hover {
  color: #f0d464;
}

.post-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #333;
  text-align: center;
}

.back-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.back-link:hover {
  color: #f0d464;
}

/* Blog image gallery */
.blog-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
  max-width: 1000px;
}

.blog-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

/* Image Gallery heading */
.post-content h2 {
  color: #d4af37;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 50px 0 30px 0;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}


/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

@media (max-width: 768px) {
  /* Header & Navigation */
  .site-header {
    padding: 15px 0;
  }

  .logo-image {
    height: 50px;
  }

  .main-nav {
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
  }

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

  .hero-content,
  .hero-content-video {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Translations Gallery */
  .translations-gallery {
    padding: 40px 0;
  }

  .translations-gallery h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .translation-covers {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .translation-cover img {
    height: 280px;
  }

  /* Red CTA Section */
  .red-cta-section {
    padding: 40px 0;
  }

  .red-cta-section h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .buy-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .buy-button {
    width: 100%;
    padding: 15px 30px;
  }

  /* Cream Section - Already handled above, ensure consistency */
  .cream-section {
    padding: 40px 0;
  }

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

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

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

  .brothers-list li {
    font-size: 15px;
  }

  /* Blog Section */
  .latest-posts,
  .blog-page {
    padding: 40px 0;
  }

  .latest-posts h2 {
    font-size: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
    padding: 25px;
  }

  /* Blog Post Page */
  .blog-post {
    padding: 40px 0;
  }

  .post-header h1 {
    font-size: 32px;
  }

  .post-content {
    font-size: 16px;
    padding: 0 20px;
  }

  .blog-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }

  /* Reviews Page */
  .reviews-page {
    padding: 40px 0;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .review-card {
    padding: 25px;
  }

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

  /* Media Page */
  .media-page {
    padding: 40px 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .media-item {
    padding: 25px;
  }

  /* Translations Page */
  .translations-page {
    padding: 40px 0;
  }

  .translations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* About Page */
  .about-author {
    padding: 40px 0;
  }

  .author-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .author-photo {
    width: 180px;
    height: 180px;
  }

  .author-bio {
    padding: 0 20px;
  }

  /* Contact Page */
  .contact-page {
    padding: 40px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 0 20px;
  }

  /* Webinars Page */
  .webinars {
    padding: 40px 0;
  }

  .webinar-card {
    margin-bottom: 30px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  /* Quote Frame (Cream Section) */
  .quote-frame {
    padding: 40px 25px;
  }

  .quote-text {
    font-size: 22px;
  }

  .quote-author {
    font-size: 14px;
  }

  .quote-credit {
    font-size: 12px;
  }

  /* Hover effects - reduce on mobile for touch */
  .cream-image img:hover,
  .quote-frame:hover {
    transform: none;
  }

  /* Containers */
  .container {
    padding: 0 20px;
  }

  /* General Typography */
  h1 {
    font-size: 32px !important;
  }

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

  h3 {
    font-size: 20px !important;
  }

  .intro {
    font-size: 16px;
  }
}

/* ========================================
   TABLET OPTIMIZATION (768px - 1024px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content,
  .hero-content-video {
    gap: 40px;
  }

  .translation-covers {
    gap: 30px;
  }

  .translation-cover img {
    height: 280px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Page Enhancements */
.media-section-title {
  color: #C9A961;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 60px 0 30px 0;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  text-transform: uppercase;
}

.media-section-title:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.media-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-type {
  background: #C9A961;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 600;
}

.media-date {
  color: #999;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: #C9A961;
  margin: 0;
  letter-spacing: 2px;
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Skip Link for Keyboard Navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #8B0000;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Enhanced Focus Styles for Keyboard Navigation */
*:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Specific overrides for buttons and links */
.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--primary);
}

a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Navigation links focus */
.main-nav a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* Form inputs focus */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}

/* Card hover states remain accessible with keyboard */
.translation-card:focus-within,
.blog-card:focus-within,
.review-card:focus-within {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4);
  border-color: rgba(139, 0, 0, 0.6);
}

/* ===================================================================
   NEWSLETTER SIGNUP SECTION
   =================================================================== */

.newsletter-signup {
  background: linear-gradient(135deg, #8B0000 0%, #5d0000 100%);
  color: white;
  padding: 80px 0;
  margin-top: 80px;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-signup h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.newsletter-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.newsletter-form {
  margin-top: 30px;
}

.form-inline {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.form-inline input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s ease;
}

.form-inline input[type="email"]::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-inline input[type="email"]:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.15);
}

.form-inline button {
  padding: 15px 30px;
  white-space: nowrap;
  background: white;
  color: #8B0000;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.form-inline button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.privacy-note {
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.8;
}
