/* GLOBAL */

html, body{
overflow-x:hidden;
max-width:100%;
}

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Poppins;
margin:0;
background:linear-gradient(135deg,#ffecd2,#fcb69f);
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
position:sticky;
top:15px;
z-index:999;
width:100%;
max-width:1200px;
margin:auto;
background:rgba(255,255,255,0.35);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border:1px solid rgba(255,255,255,0.4);
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
animation:navFloat 4s ease-in-out infinite;
}

@keyframes navFloat{
0%{transform:translateY(0);}
50%{transform:translateY(2px);}
100%{transform:translateY(0);}
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
}

.logo img{
height:55px;
display:block;
}

nav ul{
display:flex;
list-style:none;
padding:0;
margin:0;
}

nav li{
margin-left:25px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:600;
font-size:15px;
position:relative;
padding:5px 0;
transition:.3s;
}

/* NAV HOVER UNDERLINE */

nav a::after{
content:"";
position:absolute;
width:0%;
height:2px;
left:0;
bottom:-4px;
background:linear-gradient(90deg,#ff6a00,#ff2d55);
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* HERO */

.hero{
height:80vh;
position:relative;
overflow:hidden;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

.hero-slider{
position:absolute;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
z-index:2;
}

/* GLASS SECTION */

.glass-section{
margin:80px auto;
max-width:1200px;
padding:60px 40px;
border-radius:20px;
background:rgba(255,255,255,0.25);
backdrop-filter:blur(12px);
text-align:center;
}

/* FEATURES */

.features{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
max-width:1200px;
margin:auto;
}

/* FEATURE CARDS */

.feature-box{
padding:35px;
border-radius:16px;
max-width:280px;
flex:1 1 260px;
background:rgba(255,255,255,0.35);
backdrop-filter:blur(12px);
border:1.5px solid rgba(255,60,60,0.6);
box-shadow:0 8px 25px rgba(0,0,0,0.08),0 0 8px rgba(255,60,60,0.25);
transition:all .35s ease;
color:#333;
}

.feature-box:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
background:rgba(255,255,255,0.55);
}

.feature-box img{
margin-bottom:15px;
}

.feature-box h3{
margin-bottom:10px;
font-size:20px;
}

.feature-box p{
font-size:15px;
line-height:1.6;
opacity:.9;
}

/* CLASSES SECTION */

.classes{
position:relative;
padding:80px 10%;
text-align:center;
background:white;
overflow:hidden;   /* IMPORTANT: prevents splash overflow */
}

/* WATERCOLOR SPLASH BACKGROUND */

.classes::before,
.classes::after{
content:"";
position:absolute;
width:420px;
height:420px;
background:url("https://img.freepik.com/premium-photo/painting-colorful-splashes-paint-by-person_1048419-3259.jpg");
background-size:contain;
background-repeat:no-repeat;
opacity:0.18;
filter:blur(2px);
animation:splashMove 30s ease-in-out infinite alternate;
z-index:0;
}

.classes::before{
top:-120px;
left:-120px;
}

.classes::after{
bottom:-200px;
right:-210px;
animation-duration:40s;
}

@keyframes splashMove{
0%{transform:translateY(0px) rotate(0deg);}
50%{transform:translateY(-40px) rotate(5deg);}
100%{transform:translateY(30px) rotate(-5deg);}
}

/* CLASS GRID */

.class-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
width:90%;
margin:auto;
position:relative;
z-index:2;
}

/* CLASS CARDS */

.class-card{
background:rgba(255,255,255,0.45);
backdrop-filter:blur(12px);
border-radius:18px;
border:1px solid rgba(255,255,255,0.6);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
overflow:hidden;
transition:all .35s ease;
}

.class-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.class-card img{
width:100%;
height:220px;
object-fit:cover;
}

.class-content{
padding:25px;
}

.class-content h3{
font-size:20px;
margin-bottom:10px;
}

.class-content p{
font-size:15px;
line-height:1.6;
opacity:.9;
}

/* PREMIUM BUTTON */

.btn-premium{
display:inline-block;
padding:14px 35px;
border-radius:6px;
border:2px solid rgba(255,255,255,0.6);
font-weight:600;
font-size:15px;
letter-spacing:.5px;
text-decoration:none;
color:#fff;
background:linear-gradient(135deg,#ff6a00,#ff2d55,#8a2be2,#00c6ff);
background-size:300% 300%;
animation:gradientMove 6s ease infinite;
transition:.4s;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.btn-premium:hover{
transform:translateY(-3px) scale(1.03);
box-shadow:0 15px 35px rgba(255,80,0,.6);
}

/* GALLERY */

.gallery-section{
padding:80px 0;
background:#ff4d4d;
color:white;
text-align:center;
overflow:hidden;
}

.gallery-wrapper{
overflow:hidden;
width:100%;
}

.gallery-track{
display:flex;
gap:20px;
width:max-content;
animation:scrollGallery 25s linear infinite;
}

.gallery-track:hover{
animation-play-state:paused;
}

.gallery-track img{
height:200px;
border-radius:10px;
border:4px solid white;
transition:.4s;
}

.gallery-track img:hover{
transform:scale(1.1);
}

@keyframes scrollGallery{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* CTA */

.cta{
padding:90px;
text-align:center;
background:white;
color:#333;
}

/* FOOTER */

footer{
text-align:center;
background:#111;
color:white;
padding:25px;
}

/* MOBILE MENU */

.mobile-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.mobile-toggle span{
width:26px;
height:3px;
background:#333;
margin:4px 0;
border-radius:3px;
}

@media (max-width:768px){

nav ul{
position:fixed;
top:90px;
right:0;
width:75%;
max-width:260px;
height:100vh;
background:white;
flex-direction:column;
align-items:center;
padding-top:40px;
box-shadow:-5px 0 20px rgba(0,0,0,0.1);

/* IMPORTANT FIX */
transform:translateX(100%);
transition:transform .35s ease;

}

/* When menu opens */

nav ul.active{
transform:translateX(0);
}

.mobile-toggle{
display:flex;
}

nav li{
margin:20px 0;
}

}

.splash-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:0;
overflow:hidden;
}

.splash{
position:absolute;
width:350px;
max-width:40%;
opacity:0.18;
animation:splashMove 25s ease-in-out infinite alternate;
}

@media (max-width:900px){

.class-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.class-grid{
grid-template-columns:1fr;
}

}

body{
overflow-x:hidden;
}

/* FOOTER */

.footer{
background:#111;
color:white;
padding-top:60px;
margin-top:60px;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3{
font-size:22px;
margin-bottom:15px;
}

.footer-col h4{
margin-bottom:15px;
font-size:18px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
opacity:0.8;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:white;
text-decoration:none;
opacity:0.8;
transition:.3s;
}

.footer-col ul li a:hover{
opacity:1;
color:#ff6a00;
}

/* SOCIAL ICONS */

.footer-social{
margin-top:15px;
}

.footer-social a{
display:inline-block;
margin-right:10px;
font-size:20px;
text-decoration:none;
color:white;
transition:.3s;
}

.footer-social a:hover{
color:#ff6a00;
transform:translateY(-3px);
}

/* COPYRIGHT */


/* FOOTER */

.footer{
background:#111;
color:white;
position:relative;
padding-top:70px;
margin-top:60px;
overflow:hidden;
}

/* PAINT SPLASH */

.paint-splash{
position:absolute;
top:-120px;
left:-100px;
width:500px;
height:500px;
background:radial-gradient(circle,#ff6a00,#ff2d55,#8a2be2);
filter:blur(120px);
opacity:0.35;
z-index:0;
}

/* FOOTER GRID */

.footer-container{
width:90%;
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;

position:relative;
z-index:2;
}

/* LINKS */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:white;
text-decoration:none;
opacity:0.8;
transition:.3s;
}

.footer-col ul li a:hover{
color:#ff6a00;
}

/* INSTAGRAM GALLERY */

.insta-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:8px;
margin-top:10px;
}

.insta-gallery img{
width:100%;
height:70px;
object-fit:cover;
border-radius:6px;
transition:.3s;
}

.insta-gallery img:hover{
transform:scale(1.1);
}



/* COPYRIGHT */

.footer-bottom{

text-align:center;
padding:18px 10px;

margin-top:40px;

font-size:14px;
letter-spacing:.5px;

color:rgba(255,255,255,0.75);

background:linear-gradient(
90deg,
rgba(255,60,60,0.08),
rgba(255,120,0,0.05),
rgba(255,60,60,0.08)
);

border-top:1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(6px);

}

.footer-social a{

display:inline-flex;
align-items:center;
justify-content:center;

width:42px;
height:42px;

border-radius:50%;

margin-right:10px;

color:white;
font-size:18px;

text-decoration:none;

}

/* FACEBOOK */

.footer-social a:nth-child(1){
background:#1877F2;
}

/* INSTAGRAM */

.footer-social a:nth-child(2){
background:#E1306C;
}

/* WHATSAPP */

.footer-social a:nth-child(3){
background:#25D366;
}

/* ENROLL SECTION */

.enroll-section{

padding:90px 20px;
display:flex;
justify-content:center;

background:linear-gradient(115deg,#fff,#d8c7b2)

}

.enroll-container{

width:100%;
max-width:600px;

background:rgba(255,255,255,0.35);

backdrop-filter:blur(15px);

border-radius:18px;

padding:45px;

text-align:center;

border:1px solid rgba(255,255,255,0.6);

box-shadow:0 20px 45px rgba(0,0,0,0.1);

}

.enroll-container h2{
font-size:28px;
margin-bottom:10px;
}

.enroll-container p{
font-size:15px;
opacity:.8;
margin-bottom:25px;
}

/* FORM */

.enroll-form{
display:flex;
flex-direction:column;
gap:15px;
}

.form-group input,
.form-group select,
.form-group textarea{

width:100%;
padding:14px;

border-radius:8px;

border:2px solid rgba(0, 0, 255, 0.5);

font-family:Poppins;

font-size:14px;

outline:none;

transition:.3s;

}

.form-group textarea{
min-height:90px;
resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

border-color:#ff6a00;

box-shadow:0 0 0 2px rgba(255,106,0,0.15);

}

.form-logo{

width:90px;
margin:0 auto 15px auto;
display:block;

}

.mobile-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:3px;   /* controls distance between bars */
}

.mobile-toggle span{
width:26px;
height:3px;
background:#333;
border-radius:2px;
margin:0;  /* remove any extra spacing */
}
@media (max-width:768px){

.mobile-toggle{
display:flex;
}

}

@media (max-width:768px){

.enroll-section{
padding:30px 15px;
min-height:auto;
}

.enroll-container{

max-width:100%;
padding:25px 18px;
border-radius:14px;

}

.enroll-container h2{
font-size:22px;
}

.enroll-container p{
font-size:14px;
}

.enroll-form{
gap:12px;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea{

width:100%;
padding:12px;
font-size:16px;

}

}

.class-slider{
position:relative;
overflow:hidden;
max-width:1200px;
margin:auto;
}

.class-track{
display:flex;
transition:transform 0.6s ease;
gap:20px;
}

.class-card{
min-width:calc(100% / 3 - 20px);
background:#fff;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
padding-bottom:20px;
}

.class-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:18px 18px 0 0;
}

.class-card h3{
padding:15px;
font-size:18px;
}

/* ARROWS */

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:white;
border:none;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
font-size:22px;
z-index:10;
}

.arrow.left{ left:-10px; }
.arrow.right{ right:-10px; }

/* MOBILE */

@media(max-width:768px){

.class-card{
min-width:calc(100% / 1.2);
}

}
.class-content{
padding:18px;
}

.class-content h3{
font-size:18px;
font-weight:600;
margin-bottom:12px;
color:#222;
}

/* PREMIUM BUTTON */

.class-btn{
display:inline-block;
padding:10px 22px;
border-radius:30px;
font-size:14px;
font-weight:600;
text-decoration:none;
color:#fff;

background:linear-gradient(135deg,#ff6a00,#ff2d55,#8a2be2);
background-size:200%;

transition:.4s ease;
box-shadow:0 8px 20px rgba(255,80,0,0.25);
}

.class-btn:hover{
background-position:right;
transform:translateY(-2px);
box-shadow:0 12px 30px rgba(255,80,0,0.4);
}

/* IMAGE ZOOM */

.zoom-img{
cursor:pointer;
transition:.3s;
}

.zoom-img:hover{
transform:scale(1.03);
}

/* MODAL */

.img-modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.img-modal img{
max-width:90%;
max-height:85%;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
animation:zoomIn .3s ease;
}

@keyframes zoomIn{
from{transform:scale(.7); opacity:0;}
to{transform:scale(1); opacity:1;}
}

.close-modal{
position:absolute;
top:30px;
right:40px;
font-size:35px;
color:white;
cursor:pointer;
}

/* CLASS TITLE AS PREMIUM BUTTON */

.class-title{
display:inline-block;
margin-top:12px;
padding:10px 18px;

font-size:14px;
font-weight:600;
letter-spacing:.5px;

color:#fff;
text-align:center;

border-radius:30px;

/* PREMIUM GRADIENT */
background:linear-gradient(135deg,#ff6a00,#ff2d55,#8a2be2);
background-size:200%;

/* DEPTH */
box-shadow:0 8px 20px rgba(0,0,0,0.15);

/* SMOOTH */
transition:all .4s ease;
}

/* HOVER EFFECT */

.class-card:hover .class-title{
background-position:right;
transform:translateY(-3px) scale(1.05);
box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* CLASS CTA BUTTON BELOW SLIDER */

.class-cta{
text-align:center;
margin-top:40px;
}

.class-btn{
display:inline-block;
padding:14px 40px;
border-radius:50px;
font-size:15px;
font-weight:600;
text-decoration:none;
color:#fff;

background:linear-gradient(135deg,#8a2be2,#ff6a00,#ff2d55);
background-size:200% 200%;

box-shadow:0 10px 25px rgba(0,0,0,0.15);

transition:all .4s ease;

/* subtle pulse animation */
animation:pulseGlow 2.5s ease-in-out infinite;
}

/* PULSE EFFECT */

@keyframes pulseGlow{
0%{
transform:scale(1);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
50%{
transform:scale(1.04);
box-shadow:0 18px 35px rgba(255,80,0,0.35);
}
100%{
transform:scale(1);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
}

/* hover overrides pulse slightly */

.class-btn:hover{
transform:translateY(-4px) scale(1.06);
box-shadow:0 25px 45px rgba(255,80,0,0.5);
background-position:right center;

/* pause pulse on hover for cleaner UX */
animation:none;
}

/* TERMS PAGE */

.terms-section{
padding:80px 20px;
display:flex;
justify-content:center;
background:linear-gradient(135deg,#ffecd2,#fcb69f);
}

.terms-container{
max-width:900px;
width:100%;
text-align:center;
}

.terms-container h1{
font-size:36px;
margin-bottom:10px;
}

.subtitle{
font-size:16px;
opacity:0.7;
margin-bottom:40px;
}

/* GLASS BOX */

.terms-box{
text-align:left;
background:rgba(255,255,255,0.35);
backdrop-filter:blur(15px);
border-radius:18px;
padding:40px;
border:1px solid rgba(255,255,255,0.6);
box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

/* HEADINGS */

.terms-box h3{
margin-top:20px;
font-size:18px;
color:#ff6a00;
}

/* TEXT */

.terms-box p{
font-size:15px;
line-height:1.7;
opacity:0.9;
margin-top:8px;
}

/* MOBILE */

@media(max-width:768px){

.terms-section{
padding:50px 15px;
}

.terms-box{
padding:25px;
}

.terms-container h1{
font-size:26px;
}

}

/* TERMS CTA BUTTON */

.terms-cta{
text-align:center;
margin-top:35px;
}

.btn-enroll{
display:inline-block;
padding:14px 38px;
border-radius:50px;
font-size:15px;
font-weight:600;
text-decoration:none;
color:#fff;

background:linear-gradient(135deg,#ff6a00,#ff2d55,#8a2be2);
background-size:200% 200%;

box-shadow:0 10px 25px rgba(0,0,0,0.15);

transition:all .4s ease;

/* subtle pulse like your other button */
animation:pulseGlow 2.5s ease-in-out infinite;
}

/* hover effect */

.btn-enroll:hover{
transform:translateY(-4px) scale(1.06);
box-shadow:0 25px 45px rgba(255,80,0,0.5);
background-position:right center;
animation:none;
}

.pricing-section{
padding:80px 20px;
text-align:center;
}

.pricing-cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.price-card{
background:rgba(255,255,255,0.4);
backdrop-filter:blur(12px);
padding:40px;
border-radius:18px;
width:280px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.price{
font-size:32px;
font-weight:700;
color:#ff6a00;
}

/* PRICING SECTION */

.pricing-section{
padding:90px 20px;
display:flex;
justify-content:center;
background:linear-gradient(135deg,#fff,#f3e7d9);
}

.pricing-container{
max-width:1100px;
width:100%;
text-align:center;
}

.pricing-container h1{
font-size:32px;
margin-bottom:10px;
}

.subtitle{
font-size:15px;
opacity:.7;
margin-bottom:40px;
}

.pricing-cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

/* CARD DESIGN */

.price-card{
position:relative;
flex:1 1 320px;
max-width:360px;

background:rgba(255,255,255,0.45);
backdrop-filter:blur(14px);

border-radius:20px;
padding:35px 25px;

border:1px solid rgba(255,255,255,0.6);

box-shadow:0 20px 45px rgba(0,0,0,0.08);

transition:0.4s;
}

.price-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* BADGE */

.badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:linear-gradient(135deg,#ff6a00,#ff2d55);
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

/* PRICE */

.price{
font-size:34px;
font-weight:700;
margin:10px 0;
color:#ff2d55;
}

.price span{
font-size:14px;
font-weight:400;
color:#555;
}

.gst{
font-size:13px;
opacity:.7;
margin-bottom:15px;
}

/* FEATURES */

.features{
list-style:none;
padding:0;
margin:20px 0;
text-align:left;
}

.features li{
margin-bottom:10px;
font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

.pricing-section{
padding:60px 15px;
}

.price-card{
padding:25px 20px;
}

.pricing-container h1{
font-size:24px;
}

}

/* TERMS */

.terms{
margin:10px 0 20px;
font-size:14px;
text-align:left;
}

.terms a{
color:#ff2d55;
text-decoration:none;
font-weight:600;
}

.terms input{
margin-right:6px;
}

/* PAYMENT */

.payment-section{
padding:80px 20px;
display:flex;
justify-content:center;
}

.payment-box{
max-width:500px;
width:100%;
background:rgba(255,255,255,0.4);
backdrop-filter:blur(15px);
padding:40px;
border-radius:18px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.payment-options{
display:flex;
gap:20px;
margin:30px 0;
}

.pay-card{
flex:1;
padding:20px;
border-radius:12px;
background:white;
cursor:pointer;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.pay-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.pay-details{
display:none;
margin-top:20px;
background:#fff;
padding:15px;
border-radius:10px;
}

.pay-btn{
margin-top:25px;
display:inline-block;
}

/* SUCCESS */

.success-section{
padding:100px 20px;
display:flex;
justify-content:center;
text-align:center;
}

.success-box{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
max-width:500px;
}


#suggestions{
position:absolute;
width:100%;
background:white;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
margin-top:5px;
z-index:999;
}

.suggestion-item{
padding:12px;
cursor:pointer;
border-bottom:1px solid #eee;
transition:0.3s;
}

.suggestion-item:hover{
background:linear-gradient(135deg,#ff6a00,#ff2d55);
color:white;
}

/* SCHEDULE SECTION */

.schedule-section{
padding:80px 20px;
text-align:center;
background:linear-gradient(135deg,#fff,#ffe9e2);
}

.schedule-section h1{
font-size:36px;
margin-bottom:10px;
}

.sub-text{
color:#666;
margin-bottom:40px;
}

/* GRID */

.schedule-grid{
display:grid;
grid-template-columns:repeat(5,1fr); /* FORCE 5 CARDS IN ONE ROW */
gap:25px;
max-width:1200px;
margin:auto;
}

/* CARD */

.day-card{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(12px);
border-radius:18px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.day-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.day-card h3{
font-size:22px;
margin-bottom:15px;
color:#ff2d55;
}

.day-card ul{
list-style:none;
padding:0;
margin-bottom:20px;
}

.day-card ul li{
margin:8px 0;
font-size:15px;
}

/* COMING SOON */

.coming{
color:#ff6a00;
font-size:12px;
}

/* BUTTON */

.schedule-btn{
display:inline-block;
padding:10px 22px;
border-radius:6px;
background:linear-gradient(135deg,#ff6a00,#ff2d55);
color:white;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:0.3s;
}

.schedule-btn:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(255,80,0,0.5);
}

/* HIGHLIGHT FRIDAY */

.highlight{
border:2px solid #ff6a00;
}

/* DURATION */

.duration{
margin-top:40px;
font-size:16px;
color:#333;
}

/* MOBILE */

@media(max-width:1024px){
.schedule-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.schedule-grid{
grid-template-columns:1fr; /* ✅ FORCE SINGLE COLUMN */
}

.schedule-section h1{
font-size:26px;
}

.day-card{
padding:20px;
}
}
/* ABOUT SECTION */

.about-section{
padding:80px 20px;
background:linear-gradient(135deg,#fff,#ffe9e2);
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

/* IMAGE */

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
transition:0.4s;
}

.about-image img:hover{
transform:scale(1.03);
}

/* CONTENT */

.about-content{
flex:1;
}

.about-content h1{
font-size:36px;
margin-bottom:20px;
color:#333;
}

.about-content p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* BUTTON */

.about-content .btn-premium{
margin-top:20px;
display:inline-block;
}

/* MOBILE */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-content h1{
font-size:26px;
}

.about-content p{
font-size:15px;
}

}

/* ============================= */
/* CONTACT PAGE */
/* ============================= */

.contact-section{
padding:80px 20px;
text-align:center;
background:linear-gradient(135deg,#fff,#ffe9e2);
}

/* TITLE */

.contact-section h1{
font-size:34px;
margin-bottom:10px;
color:#333;
}

.contact-sub{
color:#666;
margin-bottom:40px;
font-size:15px;
}

/* LAYOUT */

.contact-container{
max-width:1200px;
margin:auto;
display:flex;
gap:40px;
flex-wrap:wrap;
justify-content:center;
}

/* LEFT SIDE */

.contact-info{
flex:1;
min-width:280px;
display:flex;
flex-direction:column;
gap:20px;
}

/* INFO BOX */

.info-box{
background:rgba(255,255,255,0.5);
backdrop-filter:blur(12px);
border-radius:16px;
padding:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.info-box:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.info-box i{
font-size:22px;
margin-bottom:10px;
color:#ff2d55;
}

.info-box h3{
margin-bottom:5px;
font-size:18px;
color:#333;
}

.info-box p{
font-size:14px;
color:#555;
}

/* RIGHT FORM */

.contact-form-box{
flex:1;
min-width:300px;

background:rgba(255,255,255,0.45);
backdrop-filter:blur(15px);

border-radius:18px;
padding:30px;

border:1px solid rgba(255,255,255,0.6);
box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

/* FORM */

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;
padding:14px;

border-radius:8px;
border:2px solid rgba(0, 0, 255, 0.5);

font-family:Poppins;
font-size:14px;

outline:none;
transition:.3s;
}

.contact-form textarea{
min-height:100px;
resize:none;
}

/* FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

border-color:#ff6a00;
box-shadow:0 0 0 2px rgba(255,106,0,0.15);
}

/* BUTTON */

.contact-form button{
margin-top:10px;
}

/* MAP */

.map-container{
max-width:1200px;
margin:50px auto 0;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.map-container iframe{
width:100%;
height:350px;
border:0;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media(max-width:768px){

.contact-section{
padding:50px 15px;
}

.contact-section h1{
font-size:26px;
}

.contact-container{
flex-direction:column;
gap:25px;
}

.contact-form-box{
padding:20px;
}

.map-container iframe{
height:250px;
}

}

/* =========================
   GALLERY PAGE (PREMIUM)
========================= */

.gallery-page{
padding:90px 20px;
text-align:center;
background:linear-gradient(135deg,#fff,#ffe9e2);
}

/* TITLE */

.gallery-page h1{
font-size:36px;
margin-bottom:10px;
color:#333;
}

.gallery-page .sub-text{
color:#666;
margin-bottom:35px;
}

/* FILTER BUTTONS */

.gallery-filters{
margin-bottom:40px;
}

.gallery-filters button{
padding:10px 22px;
margin:6px;
border:none;
border-radius:30px;
cursor:pointer;
font-weight:600;
font-size:14px;

background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);

transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.gallery-filters button:hover{
background:linear-gradient(135deg,#ff6a00,#ff2d55);
color:white;
transform:translateY(-2px);
}

.gallery-filters .active{
background:linear-gradient(135deg,#ff6a00,#ff2d55);
color:white;
}

/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

/* ITEMS */

.gallery-item{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
cursor:pointer;

transition:all .4s ease;

background:#fff;

/* GLASS + DEPTH */
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.gallery-item:hover{
transform:scale(1.05) translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* LIGHTBOX */

#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.95);

display:none;
align-items:center;
justify-content:center;

z-index:9999;
}

/* IMAGE */

#lightbox img{
max-width:90%;
max-height:85%;
border-radius:12px;

box-shadow:0 20px 60px rgba(0,0,0,0.6);

animation:zoomFade .3s ease;
}

@keyframes zoomFade{
from{transform:scale(.8);opacity:0;}
to{transform:scale(1);opacity:1;}
}

/* CLOSE BUTTON */

#lightbox .close{
position:absolute;
top:25px;
right:40px;

font-size:40px;
color:white;
cursor:pointer;

transition:0.3s;
}

#lightbox .close:hover{
color:#ff6a00;
transform:scale(1.2);
}

/* NAVIGATION */

#lightbox .nav{
position:absolute;
top:50%;
transform:translateY(-50%);

font-size:40px;
color:white;
cursor:pointer;

padding:10px 18px;
border-radius:50%;

background:rgba(0,0,0,0.4);
transition:0.3s;
}

#lightbox .nav:hover{
background:linear-gradient(135deg,#ff6a00,#ff2d55);
}

/* LEFT / RIGHT */

#lightbox .prev{ left:30px; }
#lightbox .next{ right:30px; }

/* MOBILE */

@media(max-width:768px){

.gallery-page{
padding:60px 15px;
}

.gallery-page h1{
font-size:26px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-item{
height:220px;
}

#lightbox img{
max-width:95%;
}

#lightbox .nav{
font-size:28px;
padding:8px 12px;
}

}

/* HOME ABOUT SECTION */

.home-about{
padding:80px 20px;
background:linear-gradient(135deg,#fff,#ffe9e2);
display:flex;
justify-content:center;
}

.home-about-container{
max-width:1000px;
width:100%;
text-align:center;

background:rgba(255,255,255,0.4);
backdrop-filter:blur(14px);

padding:50px 40px;
border-radius:20px;

border:1px solid rgba(255,255,255,0.6);
box-shadow:0 20px 45px rgba(0,0,0,0.1);
}

/* HEADING */

.home-about-content h2{
font-size:34px;
margin-bottom:10px;
color:#333;
}

/* SUBTEXT */

.home-about-content .highlight{
font-size:16px;
color:#ff2d55;
font-weight:600;
margin-bottom:20px;
}

/* TEXT */

.home-about-content p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* BUTTON */

.home-about-content .btn-premium{
margin-top:20px;
display:inline-block;
}

/* MOBILE */

@media(max-width:768px){

.home-about-container{
padding:30px 20px;
}

.home-about-content h2{
font-size:24px;
}

.home-about-content p{
font-size:15px;
}

}

/* DISCOVER SECTION */

.discover-section{
padding:90px 20px;
display:flex;
justify-content:center;
background:linear-gradient(135deg,#fff,#f3e7d9);
}

.discover-box{

max-width:900px;
width:100%;

text-align:center;

padding:60px 40px;

border-radius:20px;

/* GLASS EFFECT */
background:rgba(255,255,255,0.5);
backdrop-filter:blur(18px);

box-shadow:0 20px 50px rgba(0,0,0,0.1);

position:relative;
overflow:hidden;
}

/* HEADING */

.discover-box h2{
font-size:34px;
margin-bottom:20px;
color:#333;
}

.discover-box .emoji{
font-size:26px;
}

/* GLOSSY STRIP (REPLACES ORANGE BORDER) */

.highlight-strip{

display:inline-block;

padding:12px 30px;
margin-bottom:25px;

border-radius:50px;

/* GLOSSY GLASS */
background:linear-gradient(
135deg,
rgba(255,255,255,0.8),
rgba(255,255,255,0.3)
);

border:1px solid rgba(255,255,255,0.6);

box-shadow:
0 8px 25px rgba(0,0,0,0.08),
inset 0 1px 0 rgba(255,255,255,0.9);

font-weight:600;
font-size:15px;
color:#ff2d55;
letter-spacing:.4px;
}

/* TEXT */

.desc{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:18px;
}

/* ICON FEEL INLINE */

.desc b{
color:#222;
}

/* BUTTON ALIGN */

.discover-box .btn-premium{
margin-top:20px;
display:inline-block;
}

/* MOBILE */

@media(max-width:768px){

.discover-box{
padding:35px 20px;
}

.discover-box h2{
font-size:24px;
}

.highlight-strip{
font-size:13px;
padding:10px 18px;
}

.desc{
font-size:14px;
}

}

.glass-bullets{
list-style:none;
padding:0;
}

.glass-bullets li{
background:rgba(255,255,255,0.4);
backdrop-filter:blur(10px);
padding:12px 18px;
margin-bottom:10px;
border-radius:12px;
font-weight:50;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.teacher-icon{
display:inline-flex;
align-items:center;
justify-content:center;

width:60px;
height:60px;

border-radius:50%;

/* GLASS EFFECT */
background:rgba(255,255,255,0.25);
backdrop-filter:blur(12px);

/* BORDER */
border:1px solid rgba(255,255,255,0.4);

/* ICON */
color:#ff2d55;
font-size:26px;

/* SHADOW */
box-shadow:0 10px 30px rgba(0,0,0,0.1),
           inset 0 0 10px rgba(255,255,255,0.3);

/* ANIMATION */
animation:floatIcon 3s ease-in-out infinite;

transition:.4s;
}

/* FLOAT ANIMATION */
@keyframes floatIcon{
0%{transform:translateY(0);}
50%{transform:translateY(-6px);}
100%{transform:translateY(0);}
}

/* HOVER EFFECT */
.teacher-icon:hover{
transform:scale(1.1);
box-shadow:0 20px 45px rgba(255,80,0,0.4);
color:#ff6a00;
}

.class-info{
max-width:900px;
margin:50px auto;
display:flex;
gap:20px;
flex-wrap:wrap;
justify-content:center;
}

.info-card{
flex:1 1 400px;

display:flex;
align-items:flex-start;
gap:15px;

padding:20px 25px;

border-radius:16px;

/* GLASS LOOK */
background:rgba(255,255,255,0.4);
backdrop-filter:blur(12px);

/* SOFT SHADOW */
box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:.3s;
}

.info-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.info-icon{
font-size:26px;
}

/* TEXT */

.info-card p{
margin:0;
font-size:15px;
line-height:1.6;
color:#333;
}

/* PROJECT SECTION */

.projects-section{
padding:80px 20px;
background:linear-gradient(135deg,#fff,#ffe9e2);
}

.projects-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

/* TEXT */

.projects-text{
flex:1;
}

.projects-text h2{
font-size:32px;
margin-bottom:15px;
color:#333;
}

.projects-text p{
font-size:16px;
line-height:1.7;
color:#555;
}

/* SLIDER */

.projects-slider{
flex:1;
overflow:hidden;
border-radius:20px;
}

.project-track{
display:flex;
gap:20px;
animation:scrollProjects 25s linear infinite;
}

.project-track:hover{
animation-play-state:paused;
}

.project-img{
height:250px;
border-radius:15px;
object-fit:cover;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
transition:.4s;
}

.project-img:hover{
transform:scale(1.08);
}

/* AUTO SCROLL */

@keyframes scrollProjects{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* MOBILE */

@media(max-width:768px){

.projects-container{
flex-direction:column;
text-align:center;
}

.projects-text h2{
font-size:24px;
}

.project-img{
height:200px;
}

}