﻿:root {
    --primary: #FBBF24; /* Warm Yellow/Orange */
    --primary-hover: #F59E0B;
    --secondary: #34D399; /* Eco Mint Green */
    --text-dark: #334155;
    --text-light: #64748B;
    --bg-main: #F8FAFC; /* Airy White/Blueish */
    --bg-peach: #FFF7ED; /* Soft Peach */
    --bg-mint: #ECFDF5;
    --bg-soft-blue: #EFF6FF;
    --white: #FFFFFF;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 15px 40px rgba(52, 211, 153, 0.2);
    --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background-color: var(--bg-main); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 3.6rem); margin-bottom: 20px; }
h1 span { color: var(--secondary); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 20px; }
p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 15px; }
.text-center { text-align: center; }
.section-title { margin-bottom: 50px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.bg-peach { background-color: var(--bg-peach); }
.bg-mint { background-color: var(--bg-mint); }
.bg-soft-blue { background-color: var(--bg-soft-blue); }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; border: none; border-radius: 50px; font-family: 'Quicksand', sans-serif; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--primary); color: #451A03; padding: 14px 30px; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4); }
.btn-large { padding: 16px 35px; font-size: 1.2rem; }
.btn-small { padding: 10px 20px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Glassmorphism & UI Elements */
.glass-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: var(--radius); }
.glass-img { box-shadow: var(--shadow-strong); border: 8px solid var(--white); border-radius: var(--radius); }
.soft-shadow { box-shadow: var(--shadow-soft); }

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(248, 250, 252, 0.9); backdrop-filter: blur(10px); padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Quicksand', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--secondary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; color: var(--text-light); transition: color 0.3s; }
.nav-links a:hover { color: var(--secondary); }

/* Grids */
.hero-grid, .about-grid, .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Lists */
.benefits { margin-top: 25px; list-style: none; }
.benefits li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-light); }
.benefits li::before { content: '✓'; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; background: var(--secondary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.benefits strong { color: var(--text-dark); }

/* Programs Card Grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-grid .glass-card { overflow: hidden; transition: transform 0.3s ease; }
.card-grid .glass-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.card-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.card-body { padding: 30px; }
.card-body h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.3rem; }

/* Stats */
.stat-flex { display: flex; justify-content: space-between; gap: 30px; text-align: center; }
.stat-item { flex: 1; padding: 40px 20px; }
.stat-num { display: block; font-family: 'Quicksand', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--secondary); line-height: 1; margin-bottom: 10px; }
.stat-desc { font-weight: 700; font-size: 1.1rem; }

/* Accordion FAQ */
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.acc-header { width: 100%; text-align: left; padding: 25px; background: transparent; border: none; font-family: 'Quicksand', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.acc-header::after { content: '+'; font-size: 1.5rem; color: var(--secondary); transition: transform 0.3s; }
.acc-header[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 25px; }
.acc-body p { margin-bottom: 25px; }

/* Form */
.booking-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 15px; border: 2px solid transparent; background: #F1F5F9; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--text-dark); transition: all 0.3s; }
input:focus { outline: none; border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2); }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 25px; }
.form-check input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--secondary); }
.form-check label { font-size: 0.85rem; color: var(--text-light); }
.form-check a { color: var(--secondary); text-decoration: underline; }
.success-box { text-align: center; padding: 30px; background: var(--bg-mint); border-radius: 15px; border: 1px solid #6EE7B7; }
.success-box h3 { color: var(--secondary); margin: 15px 0 10px; }
.hidden { display: none !important; }

/* Footer */
.footer { background: var(--white); padding: 60px 0 20px; border-top: 1px solid #F1F5F9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { margin-bottom: 20px; font-size: 1.2rem; }
.footer address { font-style: normal; color: var(--text-light); line-height: 1.8; }
.footer-nav a { display: block; color: var(--text-light); margin-bottom: 10px; transition: color 0.3s; }
.footer-nav a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #F1F5F9; font-size: 0.9rem; color: var(--text-light); }

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 60px; }
.legal-card h1 { color: var(--secondary); margin-bottom: 30px; font-size: 2.2rem; }
.legal-card h2 { margin: 30px 0 15px; font-size: 1.4rem; color: var(--text-dark); }
.legal-card ul { padding-left: 20px; list-style: disc; margin-bottom: 15px; color: var(--text-light); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; width: 90%; max-width: 800px; }
.cookie-content { background: var(--white); padding: 20px 30px; border-radius: 50px; box-shadow: var(--shadow-strong); border: 1px solid #F1F5F9; display: flex; align-items: center; gap: 20px; }
.cookie-content p { margin: 0; font-size: 0.9rem; flex: 1; }
.cookie-content a { color: var(--secondary); text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content, .about-text, .booking-text { text-align: center; }
    .card-grid { grid-template-columns: 1fr; }
    .benefits li { text-align: left; }
    .stat-flex { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .form-row { flex-direction: column; gap: 0; }
    .cookie-content { flex-direction: column; border-radius: var(--radius); text-align: center; }
    .legal-card { padding: 30px; }
}
