/* ============================================================
   Táborové Leto – hlavný stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

/* ── PREMENNÉ ── */
:root {
  --teal:    #1BBFB4;
  --teal-d:  #15A59B;
  --yellow:  #FFD93D;
  --orange:  #FF6B35;
  --orange-d:#E55A25;
  --green:   #4CAF50;
  --green-d: #388E3C;
  --white:   #FFFFFF;
  --cream:   #FFFDF5;
  --navy:    #1A2E44;
  --gray:    #F4F7F6;
  --text:    #2D3748;
  --muted:   #718096;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(27,191,180,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, .logo-text { font-family: 'Fredoka One', cursive; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGÁCIA ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,253,245,.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.logo-text { font-size: 1.5rem; color: var(--teal); letter-spacing: -.5px; text-decoration: none; }
.logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  border-radius: 40px; padding: .5rem 1.3rem;
  font-weight: 800 !important; font-size: .9rem;
  text-decoration: none; transition: background .2s, transform .15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--orange-d) !important; transform: translateY(-2px); }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }
.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--cream); flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 800; color: var(--navy); text-decoration: none; }

/* ── SPOLOČNÉ PRE SEKCIE ── */
.site-main { padding-top: 64px; }
section { padding: 80px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; background: var(--yellow);
  color: var(--navy); border-radius: 40px;
  padding: .25rem .9rem; font-weight: 800;
  font-size: .8rem; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: .8rem;
}
h2.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 600px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #E8FBF9 0%, #FFF9E6 50%, #FFF0E8 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  animation: float 6s ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,191,180,.18) 0%, transparent 70%); top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,217,61,.22) 0%, transparent 70%); bottom: -80px; left: -80px; animation-delay: -3s; }
.blob-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%); top: 40%; right: 20%; animation-delay: -1.5s; }
@keyframes float { from { transform: translateY(0) scale(1); } to { transform: translateY(-20px) scale(1.05); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow); color: var(--navy);
  border-radius: 40px; padding: .35rem 1rem;
  font-weight: 800; font-size: .85rem; margin-bottom: 1.2rem;
}
h1.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--navy); line-height: 1.1; margin-bottom: 1.2rem; }
h1.hero-title span { color: var(--teal); }
.hero-sub { font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  border: none; border-radius: 50px; padding: .85rem 2rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,107,53,.45); }
.btn-secondary {
  background: transparent; color: var(--teal);
  border: 2.5px solid var(--teal); border-radius: 50px; padding: .85rem 2rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, color .2s, transform .15s;
}
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--teal); }
.stat-label { font-size: .8rem; color: var(--muted); font-weight: 600; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-illustration {
  width: 100%; max-width: 500px;
  background: linear-gradient(135deg, #fff 0%, #e8fbf9 100%);
  border-radius: 32px; box-shadow: 0 24px 64px rgba(27,191,180,.18);
  padding: 2.5rem; aspect-ratio: 1/1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
}
.hero-illustration::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(27,191,180,.04) 0, rgba(27,191,180,.04) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.illo-sun { font-size: 5rem; animation: spin-slow 12s linear infinite; filter: drop-shadow(0 4px 12px rgba(255,217,61,.5)); }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.illo-kids { font-size: 3.5rem; display: flex; gap: 1rem; }
.illo-activities { display: flex; gap: 1.2rem; font-size: 2.5rem; }
.illo-tag {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: .4rem .9rem; font-weight: 800; font-size: .82rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.1); z-index: 2;
}
.illo-tag.t1 { top: 1.2rem; left: 1.2rem; color: var(--orange); border: 2px solid var(--yellow); }
.illo-tag.t2 { bottom: 1.2rem; right: 1.2rem; color: var(--teal); border: 2px solid var(--teal); }
.illo-tag.t3 { top: 1.2rem; right: 1.2rem; color: var(--green); border: 2px solid var(--green); }

/* ── O TÁBORE ── */
#about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.3rem;
  border: 2px solid transparent; transition: border-color .2s, transform .2s;
}
.about-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.about-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.about-card h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* ── PRE KOHO ── */
#for-whom { background: linear-gradient(135deg, #E8FBF9 0%, #FFF9E6 100%); }
.cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,191,180,.2); }
.card-icon { font-size: 3rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* ── PROGRAM ── */
#program { background: var(--white); }
.program-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.prog-item {
  background: var(--gray); border-radius: var(--radius); padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border-left: 4px solid var(--teal); transition: background .2s, transform .2s;
}
.prog-item:hover { background: #E8FBF9; transform: translateX(4px); }
.prog-item:nth-child(3n+2) { border-left-color: var(--orange); }
.prog-item:nth-child(3n) { border-left-color: var(--yellow); }
.prog-emoji { font-size: 1.8rem; flex-shrink: 0; }
.prog-text h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: .2rem; }
.prog-text p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ── HARMONOGRAM ── */
#schedule { background: var(--navy); color: var(--white); }
#schedule .section-label { background: var(--teal); color: var(--white); }
#schedule h2.section-title { color: var(--white); }
#schedule .section-sub { color: rgba(255,255,255,.7); }
.schedule-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.timeline { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.2rem; padding-bottom: 1.2rem; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot {
  width: 42px; height: 42px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0; box-shadow: 0 0 0 4px rgba(27,191,180,.2);
}
.tl-item:nth-child(2n) .tl-dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,.2); }
.tl-item:nth-child(3n) .tl-dot { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,217,61,.2); }
.tl-line { width: 2px; flex: 1; background: rgba(255,255,255,.12); margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-right { padding-top: .4rem; }
.tl-time { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--teal); margin-bottom: .1rem; }
.tl-item:nth-child(2n) .tl-time { color: var(--orange); }
.tl-item:nth-child(3n) .tl-time { color: var(--yellow); }
.tl-desc { font-size: .95rem; color: rgba(255,255,255,.85); font-weight: 600; }
.schedule-note {
  background: rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
}
.schedule-note h3 { font-family: 'Fredoka One', cursive; color: var(--yellow); font-size: 1.2rem; margin-bottom: .8rem; }
.schedule-note ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.schedule-note ul li { font-size: .9rem; color: rgba(255,255,255,.75); display: flex; gap: .5rem; }
.schedule-note ul li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ── TERMÍNY ── */
#dates { background: var(--cream); }
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.date-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.date-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,191,180,.2); }
.date-card-header { padding: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.date-card:nth-child(1) .date-card-header { background: linear-gradient(135deg, var(--teal), #0FA89F); }
.date-card:nth-child(2) .date-card-header { background: linear-gradient(135deg, var(--orange), #E55A25); }
.date-card:nth-child(3) .date-card-header { background: linear-gradient(135deg, var(--green), var(--green-d)); }
.date-card:nth-child(4) .date-card-header { background: linear-gradient(135deg, #9B59B6, #7D3C98); }
.date-card:nth-child(5) .date-card-header { background: linear-gradient(135deg, #E91E63, #C2185B); }
.date-num {
  width: 48px; height: 48px; background: rgba(255,255,255,.25); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--white); flex-shrink: 0;
}
.date-card-header h3 { color: var(--white); font-family: 'Fredoka One', cursive; font-size: 1.25rem; }
.date-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.date-range { font-weight: 800; color: var(--navy); font-size: 1rem; }
.date-badge { display: inline-block; background: var(--yellow); color: var(--navy); border-radius: 20px; padding: .2rem .7rem; font-size: .75rem; font-weight: 800; }
.date-includes { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.date-includes li { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.date-includes li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.date-price { margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--gray); }
.price-big { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--teal); }
.price-label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.date-cta {
  display: block; text-align: center; background: var(--orange); color: var(--white);
  border-radius: 12px; padding: .75rem; font-weight: 800; text-decoration: none;
  margin-top: .8rem; transition: background .2s; font-size: .95rem;
}
.date-cta:hover { background: var(--orange-d); }

/* ── PREČO MY ── */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.why-item:nth-child(1) .why-icon { background: #E8FBF9; }
.why-item:nth-child(2) .why-icon { background: #FFF9E6; }
.why-item:nth-child(3) .why-icon { background: #FFF0E8; }
.why-item:nth-child(4) .why-icon { background: #E8F5E9; }
.why-item:nth-child(5) .why-icon { background: #EDE7F6; }
.why-item:nth-child(6) .why-icon { background: #E3F2FD; }
.why-text h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.why-text p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ── GALÉRIA ── */
#gallery { background: var(--gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.gal-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s; cursor: default;
}
.gal-item:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gal-emoji { font-size: 3rem; }
.gal-label { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); text-shadow: 0 1px 4px rgba(0,0,0,.25); }
.gal-item:nth-child(1) { background: linear-gradient(135deg, #1BBFB4, #0FA89F); }
.gal-item:nth-child(2) { background: linear-gradient(135deg, #FFD93D, #FFC107); }
.gal-item:nth-child(3) { background: linear-gradient(135deg, #FF6B35, #E55A25); }
.gal-item:nth-child(4) { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.gal-item:nth-child(5) { background: linear-gradient(135deg, #2196F3, #1565C0); }
.gal-item:nth-child(6) { background: linear-gradient(135deg, #E91E63, #C2185B); }
.gal-item:nth-child(7) { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.gal-item:nth-child(8) { background: linear-gradient(135deg, #FF9800, #E65100); }
.gal-placeholder-note {
  text-align: center; margin-top: 1.2rem; font-size: .88rem;
  color: var(--muted); font-style: italic;
}

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .8rem; max-width: 800px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid transparent; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.4rem; cursor: pointer; font-weight: 800;
  color: var(--navy); font-size: .98rem; user-select: none;
}
.faq-toggle { font-size: 1.4rem; color: var(--teal); flex-shrink: 0; transition: transform .3s; display: inline-block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 1.4rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-a p { font-size: .92rem; color: var(--muted); line-height: 1.65; }

/* ── KONTAKT ── */
#contact { background: linear-gradient(135deg, var(--teal) 0%, #0FA89F 100%); padding: 80px 5%; }
#contact .section-label { background: var(--yellow); color: var(--navy); }
#contact h2.section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,.85); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; margin-top: 2.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .15rem; }
.ci-val { font-weight: 700; color: var(--white); font-size: .95rem; }
.ci-val a { color: var(--white); text-decoration: none; }
.contact-form-wrap { background: var(--white); border-radius: 24px; padding: 2rem; box-shadow: 0 24px 64px rgba(0,0,0,.15); }
.contact-form-wrap h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-weight: 800; font-size: .85rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #E2E8F0; border-radius: 10px; padding: .7rem 1rem;
  font-family: 'Nunito', sans-serif; font-size: .95rem; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
  background: var(--cream); width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,191,180,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.gdpr-check { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.2rem; }
.gdpr-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal); flex-shrink: 0; }
.gdpr-check label { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.gdpr-check a { color: var(--teal); text-decoration: underline; }
.btn-submit {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; border-radius: 12px; padding: 1rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--orange-d); transform: translateY(-2px); }
.form-message { display: none; text-align: center; padding: 2rem 0; }
.form-message.show { display: block; }
.form-message-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-message h3 { font-family: 'Fredoka One', cursive; color: var(--teal); font-size: 1.6rem; margin-bottom: .5rem; }
.form-message p { color: var(--muted); font-size: .95rem; }
.wpcf7-response-output { display: none !important; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 3rem 5% 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: var(--white); margin-bottom: .8rem; text-decoration: none; display: block; }
.footer-logo span { color: var(--teal); }
.footer-desc { font-size: .88rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h4 { font-weight: 800; font-size: .85rem; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: .5rem; align-items: flex-start; font-size: .88rem; margin-bottom: .65rem; color: rgba(255,255,255,.65); }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

/* ── COOKIE NOTICE ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--navy); color: rgba(255,255,255,.85);
  padding: 1rem 5%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: .85rem; line-height: 1.5; }
.cookie-bar a { color: var(--teal); }
.cookie-btn {
  background: var(--teal); color: var(--white);
  border: none; border-radius: 8px; padding: .5rem 1.2rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .cards-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item.wide { grid-column: span 2; }
  .schedule-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 60px 5%; }
  .cards-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-card-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
  .dates-grid { grid-template-columns: 1fr; }
}
