/* ====================================
   GLOBAL
==================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Baloo 2',cursive;
}

html{
scroll-behavior:smooth;
}

body{
overflow-x:hidden;
background:#f7fcff;
color:#333;
}

/* ====================================
   COLORS
==================================== */

:root{

--primary:#58c3ff;
--secondary:#ffb347;
--green:#6ed36e;
--purple:#8b7cff;
--dark:#263238;
--white:#ffffff;

}

/* ====================================
   NAVBAR
==================================== */

.navbar{

position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);

width:90%;
height:80px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 30px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(18px);

border-radius:60px;

z-index:9999;

box-shadow:
0 10px 30px rgba(0,0,0,.1);

}

.logo{

display:flex;
align-items:center;
gap:10px;

font-size:24px;
font-weight:800;

color:white;

}

.logo img{
height:50px;
}

.nav-links{

display:flex;
list-style:none;
gap:30px;

}

.nav-links a{

text-decoration:none;
font-weight:700;
color:white;

transition:.3s;

}

.nav-links a:hover{

color:#ffd54f;

}

.language-switcher{

display:flex;
gap:10px;

}

.language-switcher button{

border:none;

padding:10px 15px;

border-radius:30px;

cursor:pointer;

font-weight:700;

background:white;

}

/* ====================================
   HERO
==================================== */

.hero{

height:100vh;
position:relative;

overflow:hidden;

}

.hero-video{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

}

.overlay{

position:absolute;
width:100%;
height:100%;

background:
linear-gradient(
to bottom,
rgba(0,0,0,.15),
rgba(0,0,0,.45)
);

}

.hero-content{

position:relative;
z-index:2;

height:100%;

display:flex;
flex-direction:column;

justify-content:center;
align-items:center;

text-align:center;

padding:20px;

}

.hero-content h1{

font-size:5rem;

max-width:1000px;

color:white;

font-weight:800;

line-height:1.1;

animation:fadeUp 1s ease;

}

.hero-content p{

font-size:1.4rem;

color:white;

margin-top:20px;

}

.hero-buttons{

margin-top:40px;

display:flex;
gap:20px;

}

.btn-primary{

background:var(--secondary);

padding:15px 35px;

border-radius:50px;

color:white;

font-weight:700;

text-decoration:none;

transition:.4s;

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

background:white;

padding:15px 35px;

border-radius:50px;

color:#333;

font-weight:700;

text-decoration:none;

}

/* ====================================
   FLOATING CLOUDS
==================================== */

.cloud{

position:absolute;

background:white;

opacity:.8;

border-radius:100px;

z-index:1;

}

.cloud::before,
.cloud::after{

content:"";

position:absolute;

background:white;

border-radius:50%;

}

.cloud1{

width:180px;
height:60px;

top:120px;
left:-300px;

animation:cloudMove 70s linear infinite;

}

.cloud1::before{

width:80px;
height:80px;

top:-35px;
left:20px;

}

.cloud1::after{

width:90px;
height:90px;

top:-45px;
right:20px;

}

.cloud2{

width:220px;
height:70px;

top:250px;
left:-400px;

animation:cloudMove 95s linear infinite;

}

.cloud3{

width:150px;
height:50px;

top:450px;
left:-300px;

animation:cloudMove 80s linear infinite;

}

.cloud4{

width:200px;
height:65px;

top:650px;
left:-400px;

animation:cloudMove 100s linear infinite;

}

@keyframes cloudMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(2200px);
}

}

/* ====================================
   SCROLL ICON
==================================== */

.scroll-down{

position:absolute;

bottom:30px;
left:50%;

transform:translateX(-50%);

font-size:35px;

color:white;

z-index:3;

animation:bounce 2s infinite;

}

@keyframes bounce{

0%,100%{
transform:translate(-50%,0);
}

50%{
transform:translate(-50%,-12px);
}

}

/* ====================================
   STATS
==================================== */

.stats{

padding:80px 10%;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:25px;

background:white;

}

.stat-card{

background:white;

padding:40px;

text-align:center;

border-radius:25px;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

transition:.4s;

}

.stat-card:hover{

transform:translateY(-10px);

}

.stat-card h2{

font-size:3rem;

color:var(--primary);

}

/* ====================================
   SECTION TITLE
==================================== */

section h2{

text-align:center;

font-size:3rem;

margin-bottom:50px;

font-weight:800;

color:var(--dark);

}

/* ====================================
   ABOUT
==================================== */

.about{

padding:120px 10%;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.about img{

width:100%;

}

.about-content p{

font-size:1.2rem;

line-height:1.8;

margin-bottom:30px;

}

/* ====================================
   FEATURES
==================================== */

.features{

padding:120px 10%;

background:#f2fbff;

}

.feature-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.feature-card{

background:white;

padding:40px;

border-radius:30px;

text-align:center;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.feature-card:hover{

transform:translateY(-12px);

}

.feature-card i{

font-size:50px;

color:var(--primary);

margin-bottom:20px;

}

/* ====================================
   STEM
==================================== */

.stem-section{

padding:120px 10%;

}

.stem-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.stem-card{

background:white;

overflow:hidden;

border-radius:25px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

}

.stem-card img{

width:100%;
height:250px;

object-fit:cover;

}

.stem-card h3{

padding:20px;

text-align:center;

}

/* ====================================
   INDOOR / OUTDOOR
==================================== */

.indoor,
.outdoor{

padding:120px 10%;

}

.cards,
.outdoor-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.play-card,
.outdoor-card{

background:white;

padding:40px;

text-align:center;

border-radius:25px;

font-weight:700;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

}

/* ====================================
   PROGRAMS
==================================== */

.programs{

padding:120px 10%;

background:#f7fbff;

}

.program-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.program-card{

background:white;

padding:40px;

text-align:center;

border-radius:25px;

}

/* ====================================
   GALLERY
==================================== */

.gallery{

padding:120px 10%;

}

.gallery-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;
height:250px;

object-fit:cover;

border-radius:20px;

transition:.4s;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/* ====================================
   TESTIMONIAL
==================================== */

.testimonials{

padding:120px 10%;

background:#f7fbff;

}

.testimonial{

background:white;

padding:50px;

border-radius:25px;

text-align:center;

max-width:800px;

margin:auto;

}

/* ====================================
   CONTACT
==================================== */

.contact{

padding:120px 10%;

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}

.contact form{

display:flex;
flex-direction:column;
gap:20px;

}

.contact input,
.contact textarea{

padding:15px;

border:1px solid #ddd;

border-radius:15px;

font-size:16px;

}

.contact button{

background:var(--primary);

border:none;

color:white;

padding:15px;

border-radius:15px;

cursor:pointer;

font-weight:700;

}

.contact-right img{

width:100%;

}

/* ====================================
   FOOTER
==================================== */

footer{

padding:50px;

background:#263238;

color:white;

text-align:center;

}

.footer-links{

margin:20px 0;

display:flex;
justify-content:center;
gap:20px;

}

.footer-links a{

color:white;

text-decoration:none;

}

.social{

font-size:28px;

display:flex;
justify-content:center;
gap:20px;

}

/* ====================================
   ANIMATIONS
==================================== */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(50px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* ====================================
   MOBILE
==================================== */

@media(max-width:768px){

.hero-content h1{

font-size:2.5rem;

}

.about,
.contact{

grid-template-columns:1fr;

}

.nav-links{

display:none;

}

.language-switcher{

display:none;

}

.hero-buttons{

flex-direction:column;

}

section h2{

font-size:2rem;

}

}

.hidden{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:20px;
}

.close-lightbox{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}