/* =========================================
   PlaySphere - Premium Family Entertainment
   Main Stylesheet
   ========================================= */

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

:root {
  --primary:       #FF6B35;
  --primary-dark:  #e05520;
  --primary-light: #FF8C5A;
  --accent:        #F7C948;
  --accent-dark:   #e6b320;
  --white:         #ffffff;
  --off-white:     #FAF9F7;
  --gray-100:      #F5F4F2;
  --gray-200:      #E8E6E1;
  --gray-400:      #A09E99;
  --gray-600:      #6B6865;
  --gray-800:      #2D2C2A;
  --dark:          #1A1917;
  --text:          #2D2C2A;
  --text-light:    #6B6865;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-primary: 0 8px 30px rgba(255,107,53,0.35);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,107,53,.1);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-subtitle.left { margin: 0 0 48px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,.45);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.navbar.transparent { background: transparent; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255,107,53,.4);
}
.nav-logo span.highlight { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--gray-800); }
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(255,107,53,.08);
}
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--primary);
}
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-main.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,25,23,.78) 0%,
    rgba(26,25,23,.45) 60%,
    rgba(255,107,53,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 99px;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  position: absolute;
  bottom: 48px; right: 0;
  z-index: 2;
  display: flex;
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-stat {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 20px 28px;
  text-align: center;
  color: var(--white);
}
.hero-stat:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.hero-stat:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.hero-stat .num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
}
.hero-stat .label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce-down 2.5s infinite;
}
.hero-scroll svg { opacity: .7; }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==============================
   ABOUT STRIP
   ============================== */
.about-strip {
  background: var(--primary);
  padding: 20px 0;
  overflow: hidden;
}
.about-strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.strip-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 99px;
}

/* ==============================
   FEATURES / WHY US
   ============================== */
.features { padding: 100px 0; background: var(--white); }
.features-header { text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,53,.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(255,107,53,.3);
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { color: var(--text-light); font-size: .93rem; line-height: 1.65; }

/* ==============================
   ABOUT
   ============================== */
.about { padding: 100px 0; background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
}
.about-badge .num { font-size: 2.2rem; line-height: 1; font-family: var(--font-display); }
.about-badge .lbl { font-size: .75rem; letter-spacing: .08em; opacity: .9; }
.about-content {}
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-list-check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(255,107,53,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  font-size: .75rem;
  color: var(--primary);
}
.about-list-item p { color: var(--text-light); font-size: .93rem; }
.about-list-item strong { color: var(--dark); font-weight: 600; }

/* ==============================
   ACTIVITIES
   ============================== */
.activities { padding: 100px 0; background: var(--white); }
.activities-header { text-align: center; }
.activities-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,53,.3);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.activity-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.activity-card:hover .activity-img { transform: scale(1.06); }
.activity-img-wrap { overflow: hidden; }
.activity-body { padding: 24px; }
.activity-age {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,107,53,.1);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.activity-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.activity-body p { color: var(--text-light); font-size: .89rem; line-height: 1.6; }

/* ==============================
   BIRTHDAY / EVENTS
   ============================== */
.events {
  padding: 100px 0;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}
.events::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,.2), transparent 70%);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.events-content .section-tag { background: rgba(247,201,72,.15); color: var(--accent); }
.events-content h2 { color: var(--white); }
.events-content p { color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.7; }
.events-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.events-feature {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.ef-icon {
  font-size: 1.4rem;
  min-width: 40px;
  text-align: center;
}
.ef-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.ef-text p { color: rgba(255,255,255,.55); font-size: .83rem; }
.events-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

/* ==============================
   GALLERY
   ============================== */
.gallery { padding: 100px 0; background: var(--off-white); }
.gallery-header { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.large img { height: 416px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,23,.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-header { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,.25);
}
.stars { color: var(--accent); margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author h4 { font-size: .95rem; margin-bottom: 2px; }
.testimonial-author span { font-size: .8rem; color: var(--text-light); }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,201,72,.25), transparent 70%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,.55);
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.contact-icon { color: var(--primary); min-width: 16px; margin-top: 3px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--primary); }

/* ==============================
   INNER PAGE HERO
   ============================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,107,53,.15), transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 540px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin-top: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ==============================
   COOKIE BANNER
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 64px rgba(0,0,0,.18);
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gray-200);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: .88rem; color: var(--text-light); flex: 1; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1.5px solid var(--gray-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(255,107,53,.3);
  box-shadow: var(--shadow-sm);
}
.cc-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,107,53,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.cc-body h4 { font-size: 1rem; margin-bottom: 4px; }
.cc-body p { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.cc-body a { color: var(--primary); transition: var(--transition); }
.cc-body a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); font-size: .93rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #16a34a;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.form-success.visible { display: block; }

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-section { padding: 80px 0; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 12px;
  color: var(--dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: .95rem;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.75;
}
.legal-content a { color: var(--primary); text-decoration: underline; }

/* ==============================
   MAP
   ============================== */
.map-section { padding: 0 0 100px; }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  text-align: center;
  color: var(--text-light);
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: .95rem; }
.map-placeholder strong { color: var(--primary); }

/* ==============================
   UTILITIES
   ============================== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large img { height: 300px; }
  .gallery-item img { height: 180px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .about-grid .about-image-wrap { order: -1; }
  .hero-content { padding: 100px 0 60px; }
  .cookie-banner { flex-direction: column; left: 12px; right: 12px; bottom: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
