/* ========================================
   The Bubble Maker of Kashi — Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- Custom Properties --- */
:root {
  --color-bg: #0d0d14;
  --color-bg-alt: #141420;
  --color-surface: #1a1a2e;
  --color-amber: #d4a574;
  --color-gold: #c9a96e;
  --color-gold-light: #e8d5a8;
  --color-crimson: #8b2635;
  --color-crimson-soft: #a03b4a;
  --color-cream: #f0ece3;
  --color-text: #e8e4dc;
  --color-text-muted: #9a9590;
  --color-divider: rgba(201, 169, 110, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --max-width: 1200px;
  --section-padding: clamp(80px, 12vh, 140px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-gold-light);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 20, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

.nav-logo span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-cream);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh; /* ultimate fallback */
  min-height: var(--hero-height, 100vh); /* static pixel height fixed via JS */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 20, 0.3) 0%,
    rgba(13, 13, 20, 0.1) 40%,
    rgba(13, 13, 20, 0.5) 70%,
    rgba(13, 13, 20, 1) 100%
  );
}

#bubble-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px; /* Reduced from 80px to move book leftward */
  max-width: var(--max-width);
  padding: 0 40px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.hero-title em {
  color: var(--color-crimson-soft);
  font-weight: 600;
}

.hero-author {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-amber);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--color-crimson), var(--color-crimson-soft));
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 38, 53, 0.4);
  color: #fff;
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-book {
  flex-shrink: 0;
  width: 320px;
  position: relative;
}

.hero-book img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 80px rgba(139, 38, 53, 0.15);
  transition: transform 0.6s ease;
}

.hero-book:hover img {
  transform: scale(1.03) rotateY(-3deg);
}

.hero-book::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.08), transparent 70%);
  z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========================================
   Section Shared Styles
   ======================================== */
.section {
  padding: var(--section-padding) 40px;
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-bottom: 32px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ========================================
   About Section
   ======================================== */
.about {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 20px;
}



.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  z-index: -1;
}

.about-quote {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--color-crimson-soft);
  background: rgba(139, 38, 53, 0.08);
  border-radius: 0 8px 8px 0;
}

.about-quote p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-amber);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   Who Section
   ======================================== */
.who {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.who-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.who-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}

.who-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(13, 13, 20, 0.6) 20%,
    rgba(13, 13, 20, 0.6) 80%,
    var(--color-bg) 100%
  );
}

.who .container {
  position: relative;
  z-index: 1;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.who-card {
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-crimson), var(--color-gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.who-card:hover::before {
  opacity: 1;
}

.who-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 14px;
  font-weight: 600;
}

.who-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ========================================
   Discover Section
   ======================================== */
.discover {
  background: var(--color-bg-alt);
}

.discover-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.discover-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.discover-list {
  list-style: none;
  margin-top: 8px;
}

.discover-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.discover-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-crimson-soft);
  margin-top: 8px;
  box-shadow: 0 0 12px rgba(160, 59, 74, 0.4);
}

.discover-list li div {
  font-size: 1.02rem;
  color: var(--color-text);
  line-height: 1.7;
}

.discover-list li strong {
  color: var(--color-cream);
  font-weight: 600;
}

/* ========================================
   Quotes Section
   ======================================== */
.quotes {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.quotes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.quotes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.7);
}

.quotes-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(13, 13, 20, 0.5) 30%,
    rgba(13, 13, 20, 0.5) 70%,
    var(--color-bg) 100%
  );
}

.quotes .container {
  position: relative;
  z-index: 1;
}

.quotes-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-crimson-soft);
  line-height: 1;
  margin-bottom: -20px;
  opacity: 0.5;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.quotes-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.quotes-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.quotes-nav button.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.quotes-nav button:hover {
  background: rgba(201, 169, 110, 0.4);
}

/* ========================================
   Author Section
   ======================================== */
.author {
  position: relative;
  overflow: hidden;
}

.author-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.author-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}

.author-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(13, 13, 20, 0.5) 30%,
    rgba(13, 13, 20, 0.5) 70%,
    var(--color-bg) 100%
  );
}

.author .container {
  position: relative;
  z-index: 1;
}

.author-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.author-photo {
  position: relative;
}

.author-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.author-photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  z-index: -1;
}

.author-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: 8px;
  font-weight: 700;
}

.author-info .role {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 24px;
}

.author-info p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ========================================
   Purchase / CTA Section
   ======================================== */
.purchase {
  background: linear-gradient(135deg, var(--color-surface), var(--color-bg));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.purchase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.purchase-content {
  max-width: 700px;
  margin: 0 auto;
}

.purchase-book-img {
  width: 280px;
  margin: 0 auto 40px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 60px rgba(139, 38, 53, 0.1);
}

.purchase h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-cream);
  margin-bottom: 16px;
  font-weight: 700;
}

.purchase p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.purchase-card {
  background: rgba(26, 26, 46, 0.4);
  border: 1px solid var(--color-divider);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.purchase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(26, 26, 46, 0.7);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.format-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.format-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  font-weight: 600;
}

.btn-amazon-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FF9900, #FF6600);
  color: #1a1a2e;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.purchase-card:hover .btn-amazon-small {
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.btn-amazon-small svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 60px 40px 40px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
}

.footer-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-divider);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 50px;
  }
  .hero-book {
    width: 260px;
  }
  .about-grid {
    gap: 50px;
  }
  .discover-layout {
    grid-template-columns: 350px 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: var(--section-padding) 24px;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 100px 20px 60px;
  }
  .hero-text {
    padding: 0 4px;
  }
  .hero-book {
    width: 200px;
  }
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }
  .hero-cta {
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-text p {
    font-size: 0.95rem;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .who-card {
    padding: 24px 20px;
  }
  .who-card h3 {
    font-size: 1.1rem;
  }
  .who-card p {
    font-size: 0.9rem;
  }

  .discover-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .discover-image {
    max-width: 300px;
    margin: 0 auto;
  }
  .discover-list li {
    font-size: 0.95rem;
  }

  .quotes-carousel {
    min-height: 280px;
    padding: 40px 20px;
  }
  .quote-text {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  .author-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .author-photo {
    width: 220px;
    margin: 0 auto;
  }
  .author-info p {
    font-size: 0.95rem;
  }

  .purchase-options {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
  }
  .purchase-book-img {
    width: 160px;
  }
  .purchase-content h2 {
    font-size: 1.5rem;
  }
  .purchase-content p {
    font-size: 0.95rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .hero-book {
    width: 160px;
  }
  .hero-author {
    font-size: 1rem;
  }
  .section-label {
    font-size: 0.65rem;
  }
  .quotes-carousel {
    min-height: 300px;
  }
  .who-card {
    padding: 22px 18px;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ========================================
   Google Translate Overrides (Auto-Translate)
   Hide ALL Google Translate UI elements
   ======================================== */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-te-spinner-pos,
#goog-gt-tt,
.goog-te-ftab-frame,
.goog-te-menu-value,
.goog-te-gadget-simple,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-hgDUwe,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
body {
  top: 0px !important;
  position: static !important;
}
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.skiptranslate {
  display: none !important;
}
