/*=========================================
HOME PAGE HERO
=========================================*/

.hero{
    min-height:calc(100vh - 100px);
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    padding:60px 0 80px;
}

/*=========================================
LEFT CONTENT
=========================================*/

.hero-content span{
    display:inline-block;
    color:#FDBA2D;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.hero-content h2{
    font-size:3rem;
    line-height:1.2;
    font-weight:700;
    margin-bottom:10px;
}

.hero-content h1{
    font-size:6rem;
    line-height:.95;
    font-weight:900;
    margin-bottom:20px;
    color:#ffffff;
}

.hero-content .gold{
    color:#FDBA2D;
}

.hero-content p{
    font-size:1.35rem;
    color:#dddddd;
    max-width:500px;
    line-height:1.8;
    margin-bottom:40px;
}

/*=========================================
BUTTONS
=========================================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

/*=========================================
SOCIAL ICONS
=========================================*/

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#FDBA2D;
    font-size:18px;
    transition:.35s;
}

.socials a:hover{
    background:#FDBA2D;
    color:#2B003C;
    transform:translateY(-4px);
}

/*=========================================
RIGHT SIDE
=========================================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image>img{
    width:100%;
    max-width:520px;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

/*=========================================
FLOATING CIRCLE IMAGE
=========================================*/

.circle{
    position:absolute;
    left:-70px;
    bottom:35px;

    width:180px;
    height:180px;

    border-radius:50%;
    overflow:hidden;

    border:7px solid #FDBA2D;

    background:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

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

/*=========================================
ANIMATIONS
=========================================*/

.hero-content{
    animation:slideLeft .9s ease;
}

.hero-image{
    animation:slideRight .9s ease;
}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/*=================================
FEATURED CLASSES
=================================*/

.classes{
    padding:100px 0;
    background:transparent;
}

.classes-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.class-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    transition:.35s;

}

.class-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.class-card img{

    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;

}

.class-info{

    padding:25px;

}

.class-info h3{

    color:#FDBA2D;

    margin-bottom:15px;

    font-size:24px;

}

.class-info p{

    color:#dddddd;

    line-height:1.7;

}

/*=================================
WHY US SECTION
=================================*/

.why-us{
    padding:120px 0;
    background:transparent;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.section-title span{
    color:#FDBA2D;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    font-size:3rem;
    margin:20px 0;
}

.section-title p{
    color:#ddd;
    font-size:18px;
}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    background:#4A0A6D;

}

.feature-card i{

    font-size:48px;

    color:#FDBA2D;

    margin-bottom:20px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.feature-card p{

    color:#ddd;

    line-height:1.8;

}

/*=================================
SERVICES
=================================*/

.services{
    padding:100px 0;
    background:transparent;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:28px;

    margin-bottom:15px;

    color:#FDBA2D;

}

.service-content p{

    color:#dddddd;

    line-height:1.8;

}

.feature-card,
.service-card,
.class-card,
.trainer-card,
.program-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

}

.trainers{

    padding:120px 0;

}

.trainer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.trainer-card{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    text-align:center;

    padding-bottom:30px;

}

.trainer-card:hover{

    transform:translateY(-12px);

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

}

.trainer-card img{

    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;

}

.trainer-card h3{

    margin-top:20px;

    color:white;

}

.position{

    color:#ffb62f;

    font-weight:600;

    margin:10px 0;

}

/* ==========================
   Testimonials
========================== */

.testimonials{
    padding:120px 0;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.testimonial-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:35px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.stars{

    color:#ffb62f;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    color:#ddd;

    line-height:1.8;

    margin-bottom:30px;

    font-style:italic;

}

.member{

    display:flex;

    align-items:center;

    gap:15px;

}

.member img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #ffb62f;

}

.member h4{

    color:#fff;

    margin-bottom:4px;

}

.member span{

    color:#aaa;

    font-size:14px;

}

/*=================================
CONTACT CTA
=================================*/

.contact-cta{

    padding:120px 0;

}

.cta-content{

    text-align:center;

    max-width:750px;

    margin:0 auto 80px;

}

.cta-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:700;

}

.cta-content h2{

    font-size:3rem;

    margin:20px 0;

}

.cta-content p{

    font-size:18px;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.contact-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.contact-card i{

    font-size:45px;

    color:var(--gold);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card p{

    line-height:1.8;

}

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

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

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*==========================
SCROLL ANIMATION
===========================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.service-card,
.class-card,
.trainer-card,
.program-card{

    overflow:hidden;

}

.service-card img,
.class-card img,
.trainer-card img{

    transition:.6s;

}

.service-card:hover img,
.class-card:hover img,
.trainer-card:hover img{

    transform:scale(1.08);

}

#guardianSection{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:all .4s ease;

}

#guardianSection.show{

    max-height:500px;

    opacity:1;

    margin-top:30px;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.program-card:hover{

    transform:translateY(-10px);

    background:#4A0A6D;

}

.program-card i{

    font-size:48px;

    color:#FDBA2D;

    margin-bottom:20px;

}

.program-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.program-card p{

    color:#ddd;

    line-height:1.8;

}

.registration-form{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

padding:40px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.form-section{

margin-bottom:45px;

}

.form-section h3{

color:#FDBA2D;

margin-bottom:25px;

font-size:22px;

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.input-box{

display:flex;

flex-direction:column;

}

.input-box label{

margin-bottom:8px;

font-weight:600;

color:#FDBA2D;

}

.input-box input,
.input-box select,
.input-box textarea{

width:100%;

padding:15px;

border:none;

border-radius:12px;

background:rgba(255,255,255,.08);

color:white;

font-size:16px;

}

.input-box textarea{

resize:vertical;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

outline:none;

border:2px solid #FDBA2D;

background:rgba(255,255,255,.12);

}

.agreement{

margin:35px 0;

}

.registration-form .primary-btn{

width:100%;

padding:18px;

font-size:18px;

}

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

@media (max-width:768px){

html{
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
}

.container{
    width:90%;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    min-height:auto;
    padding-bottom:50px;
}

.navbar{
    padding:20px 0;
}

.logo img{
    width:55px;
}

/* Hide desktop menu */

/*==============================
OVERLAY
==============================*/

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}

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

.mobile-menu{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:linear-gradient(
        180deg,
        #2B003C,
        #17001F
    );

    padding:30px;

    display:flex;

    flex-direction:column;

    transition:.35s ease;

    z-index:999;

    box-shadow:-15px 0 40px rgba(0,0,0,.45);

}

.mobile-menu.active{

    right:0;

}

/*==============================
HEADER
==============================*/

.menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}

.menu-header img{

    width:70px;

}

.close-menu{

    background:none;

    border:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

.menu-tagline{

    color:#bbbbbb;

    font-size:14px;

    margin-bottom:35px;

    line-height:1.6;

}

/*==============================
MENU ITEMS
==============================*/

.mobile-menu ul{

    list-style:none;

}

.mobile-menu li{

    margin-bottom:12px;

}

.mobile-menu a{

    display:flex;

    align-items:center;

    gap:16px;

    padding:15px 18px;

    border-radius:14px;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.mobile-menu a i{

    color:#FDBA2D;

    width:22px;

    text-align:center;

    font-size:18px;

}

.mobile-menu a:hover{

    background:rgba(253,186,45,.12);

    color:#FDBA2D;

    transform:translateX(6px);

}

/*==============================
JOIN BUTTON
==============================*/

.mobile-btn{

    margin-top:auto;

    display:block;

    text-align:center;

    background:#FDBA2D;

    color:#1a1a1a;

    padding:15px;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

.mobile-btn:hover{

    background:#ffd15c;

}

/*==============================
SOCIALS
==============================*/

.menu-socials{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

}

.menu-socials a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#FDBA2D;

    transition:.3s;

}

.menu-socials a:hover{

    background:#FDBA2D;

    color:#2B003C;

}

/* =========================
 HERO
========================= */

.hero{
    display:grid;
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
    padding-top:30px;
}
.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:42px;
    line-height:1.1;
}

.hero-content h2{
    font-size:26px;
}

.hero-content p{
    width:100%;
    margin:auto;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.socials{
    justify-content:center;
}

.hero-image{
    width:100%;
}

.hero-image img{
    width:85%;
    margin:auto;
}

/* =========================
SECTION TITLES
========================= */

.section-title h2{
    font-size:34px;
}

.section-title p{
    width:100%;
}

/* =========================
FEATURE BOXES
========================= */

.features-grid{
    grid-template-columns:1fr;
    gap:25px;
}

/* =========================
SERVICES
========================= */

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

.service-card img{
    height:auto;
}

/* =========================
CLASSES
========================= */

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

/* =========================
TRAINERS
========================= */

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

.trainer-card img{
    height:320px;
}

/* =========================
TESTIMONIALS
========================= */

.testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.testimonial-card{
    padding:25px;
}

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

.contact-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.contact-card{
    width:100%;
}

/* =========================
FOOTER
========================= */

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:35px;
}

.footer-socials{
    justify-content:center;
}

.footer-bottom{
    text-align:center;
}

/* =========================
BUTTONS
========================= */

.primary-btn,
.secondary-btn{
    width:220px;
    justify-content:center;
}

/* =========================
SPACING
========================= */

section{
    padding:60px 0;
}

.circle{
    position:relative;
    left:0;
    bottom:0;
    margin:20px auto 0;
    width:120px;
    height:120px;
}

.classes-grid,
.features-grid,
.services-grid,
.trainer-grid,
.testimonial-grid,
.contact-grid,
.footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.nav-links{

    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;

    background:#22002d;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    transition:.4s;
    z-index:999;

}

.nav-links.active{

    right:0;

}

}

