/* Josy Website — style.css
   Playful, colorful design with organic shapes, waves, and warm personality. */

:root {
  --bg-cream: #FFF9F0;
  --bg-white: #FFFFFF;
  --accent-wood: #8B6D4A;
  --accent-wood-light: #B8956A;
  --text-primary: #2D2A26;
  --text-secondary: #5C5650;
  --text-light: #9E9590;

  /* Playful JOSY color palette — derived from the logo letters */
  --josy-red: #E8614D;
  --josy-blue: #5BA4D9;
  --josy-yellow: #F5C542;
  --josy-green: #6BBF6B;

  /* Level colors — softer, more playful */
  --level-green: #A8E6A3;
  --level-green-dark: #2D7A2D;
  --level-gold: #FFD966;
  --level-gold-dark: #7A5C00;
  --level-blue: #8DD0EF;
  --level-blue-dark: #1A5A7A;

  --shadow-soft: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-playful: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --max-width: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, 'SF Pro Rounded', 'SF Pro Text', system-ui, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-wood); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--josy-red); }

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

/* ========== DECORATIVE BLOBS ========== */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.blob-red { background: var(--josy-red); }
.blob-blue { background: var(--josy-blue); }
.blob-yellow { background: var(--josy-yellow); }
.blob-green { background: var(--josy-green); }

/* Wave section dividers */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.wave-divider.flip { transform: scaleY(-1); }

/* ========== NAVIGATION ========== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 34px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover img { transform: scale(1.05) rotate(-2deg); }

/* Small Josy next to the logo in the navbar */
.nav-mascot {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--josy-yellow);
  transition: transform 0.3s;
}

.nav-logo:hover .nav-mascot {
  transform: scale(1.1) rotate(4deg);
}

/* Hide on small screens to save space */
@media (max-width: 600px) {
  .nav-mascot { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--josy-red);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

/* Language selector */
.lang-select { position: relative; display: inline-block; }

.lang-btn {
  background: var(--josy-yellow);
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.4);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  /* Invisible bridge so the cursor doesn't leave .lang-select while moving down */
  padding-top: 8px;
  background: transparent;
  min-width: 160px;
  z-index: 200;
}

/* The visible dropdown panel lives inside the transparent wrapper */
.lang-dropdown-inner {
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-playful);
  overflow: hidden;
}

.lang-select:hover .lang-dropdown,
.lang-select:focus-within .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: background 0.15s, padding-left 0.2s;
}

.lang-dropdown a:hover {
  background: #FFF3E0;
  padding-left: 22px;
}

.lang-dropdown a.active {
  font-weight: 700;
  color: var(--josy-red);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
  /* Warm gradient background that immediately catches the eye */
  background: linear-gradient(
    160deg,
    #FFF5E6 0%,
    #FFE8D6 20%,
    #FFDBC8 40%,
    #E8D5F0 65%,
    #D0E4F7 85%,
    #E6F0FF 100%
  );
}

/* Staggered entrance animations for hero elements */
.hero-entrance {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.8s ease-out forwards;
}

.hero-entrance-1 { animation-delay: 0.1s; }
.hero-entrance-2 { animation-delay: 0.3s; }
.hero-entrance-3 { animation-delay: 0.5s; }
.hero-entrance-4 { animation-delay: 0.7s; }
.hero-entrance-5 { animation-delay: 0.9s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-entrance {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Logo combines float + fade-in via comma-separated animations */
.hero-logo {
  width: 320px;
  margin: 0 auto 16px;
  animation: heroFadeIn 0.8s ease-out forwards, float 4s ease-in-out 0.9s infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

/* Override the generic hero-entrance animation for the logo since it has its own combo */
.hero-logo.hero-entrance {
  animation: heroFadeIn 0.8s 0.1s ease-out forwards, float 4s ease-in-out 0.9s infinite;
}

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

.hero-tagline {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* Transparent mascot — no card styling needed */
.hero-mascot {
  width: 300px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transform: rotate(2deg);
  transition: transform 0.4s;
}

.hero-mascot:hover { transform: rotate(0deg) scale(1.05); }

/* iPad-style device mockup frame around the screenshot */
.hero-device-frame {
  position: relative;
  width: 260px;
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.hero-device-frame:hover { transform: rotate(0deg) scale(1.03); }

/* iPad-style bezel around the pure simulator screenshot */
.hero-device-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(145deg, #2D2A26 0%, #1a1816 100%);
  border-radius: 22px;
  z-index: -1;
  box-shadow: var(--shadow-playful), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Small camera dot at top center */
.hero-device-frame::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #3a3a3a;
  border-radius: 50%;
  z-index: 1;
}

.hero-screenshot {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.2s;
}

.app-store-badge:hover { transform: scale(1.08); }

.app-store-badge img {
  height: 56px;
  width: auto;
}

/* Coming Soon badge — no longer used (app is live), kept for reference
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--josy-yellow) 0%, #F5D76E 100%);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.coming-soon-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(245, 197, 66, 0.5);
  color: var(--text-primary);
}
*/

/* ========== SECTIONS (shared) ========== */

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ========== FEATURES ========== */

.features-section {
  background: var(--bg-white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(245, 197, 66, 0.08);
}

.feature-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.feature-icon-red { background: rgba(232, 97, 77, 0.12); }
.feature-icon-blue { background: rgba(91, 164, 217, 0.12); }
.feature-icon-yellow { background: rgba(245, 197, 66, 0.15); }
.feature-icon-green { background: rgba(107, 191, 107, 0.12); }
.feature-icon-purple { background: rgba(160, 120, 200, 0.12); }
.feature-icon-orange { background: rgba(232, 150, 77, 0.12); }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ========== TARGET AUDIENCE ========== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.audience-card:nth-child(1)::before { background: var(--josy-red); }
.audience-card:nth-child(2)::before { background: var(--josy-blue); }
.audience-card:nth-child(3)::before { background: var(--josy-green); }

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-playful);
}

.audience-card .icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.audience-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========== BOOKS / LEVELS ========== */

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.level-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.level-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-playful);
}

.level-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.level-badge.discover { background: var(--level-green); color: var(--level-green-dark); }
.level-badge.understand { background: var(--level-gold); color: var(--level-gold-dark); }
.level-badge.stories { background: var(--level-blue); color: var(--level-blue-dark); }

.level-card-content {
  padding: 24px 24px 28px;
}

.level-card-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 14px 0 8px;
}

.level-card-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.level-card img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--bg-cream);
  border-radius: 8px;
  display: block;
}

/* iPad-style device frame around level card screenshots */
.level-screenshot-frame {
  position: relative;
  margin: 16px 16px 0;
}

.level-screenshot-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(145deg, #2D2A26 0%, #1a1816 100%);
  border-radius: 14px;
  z-index: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.06);
}

.level-screenshot-frame img {
  position: relative;
  z-index: 1;
}

/* ========== ABOUT / STORY ========== */

.about-section {
  background: var(--bg-white);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-playful);
  transform: rotate(-3deg);
  transition: transform 0.4s;
}

.about-image:hover { transform: rotate(0deg) scale(1.02); }

/* Decorative dot behind the image */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--josy-yellow);
  opacity: 0.2;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.about-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--josy-red);
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-highlight {
  background: linear-gradient(120deg, rgba(245,197,66,0.15) 0%, rgba(232,97,77,0.08) 100%);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  font-weight: 500;
  color: var(--text-primary) !important;
  border-left: 4px solid var(--josy-yellow);
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover { box-shadow: var(--shadow-card); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--josy-red);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 97, 77, 0.08);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  background: rgba(232, 97, 77, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========== CTA / DOWNLOAD ========== */

.cta-section {
  text-align: center;
  position: relative;
}

.cta {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFF0F0 50%, #F0F5FF 100%);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* Decorative circles in CTA */
.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.cta::before {
  width: 200px;
  height: 200px;
  background: var(--josy-red);
  top: -60px;
  right: -40px;
}

.cta::after {
  width: 150px;
  height: 150px;
  background: var(--josy-blue);
  bottom: -40px;
  left: -30px;
}

.cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.cta-mascot {
  width: 180px;
  border-radius: var(--radius-lg);
  margin: 0 auto 28px;
  box-shadow: var(--shadow-card);
  border: 4px solid white;
  transition: transform 0.3s;
}

.cta-mascot:hover { transform: scale(1.1) rotate(5deg); }

/* ========== FOOTER ========== */

.footer {
  padding: 48px 0 36px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========== PRIVACY / LEGAL PAGE ========== */

.legal-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--josy-red);
}

.legal-page p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page a { text-decoration: underline; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--josy-red);
}

.back-link:hover { gap: 10px; }

/* ========== SCROLL ANIMATIONS ========== */

/* Elements start invisible and slide up when entering viewport */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.15s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.35s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== FEATURE ICONS (mascot images instead of emoji) ========== */

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}

/* ========== SECTION COLOR BACKGROUNDS ========== */

/* Alternate cream / white sections with subtle color tints */
#fuer-wen {
  background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(91, 164, 217, 0.06) 50%, var(--bg-cream) 100%);
}

#buecher {
  background: var(--bg-white);
}

#faq {
  background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(107, 191, 107, 0.06) 50%, var(--bg-cream) 100%);
}

/* ========== MASCOT DECORATION (floating Josy alongside sections) ========== */

.section-mascot {
  width: 120px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s;
}

.section-mascot:hover {
  transform: scale(1.05) rotate(3deg);
}

/* Position mascot next to section title */
.section-header-with-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}

.section-header-with-mascot .section-title {
  margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .features-grid,
  .audience-grid,
  .levels-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

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

  .about-image-wrapper { display: flex; justify-content: center; }
  .about-image { max-width: 280px; }

  .hero-content {
    flex-direction: column;
    gap: 28px;
  }

  .hero-mascot { width: 240px; }
  .hero-device-frame { width: 200px; }
  .hero-tagline { font-size: 2.2rem; }

  .section-title { font-size: 1.6rem; }
  .section-mascot { width: 80px; }
  .cta { padding: 48px 28px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }

  .hero { padding: 56px 0 32px; }
  .hero-logo { width: 240px; }
  .hero-tagline { font-size: 1.8rem; }

  section { padding: 56px 0; }
  .section-title { font-size: 1.4rem; }

  .feature-card { padding: 24px 16px; }
  .cta { padding: 40px 24px; }
  .cta h2 { font-size: 1.4rem; }

  .about-highlight { padding: 16px 18px; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-wood);
  padding: 4px;
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 16px 28px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .nav-links.open { display: flex; }
}
