/* ===============================
   GOOGLE FONT
================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===============================
   RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

/* ===============================
   VARIABLES
================================= */

:root{

    --gold:#f5c52a;
    --gold-dark:#D4AF37;
    --black:#0b0b0b;
    --card:#171717;
    --grey:#d0d0d0;

}

/* ===============================
   HEADER
================================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:9999;

    background:rgba(0,0,0,.85);
    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    max-width:1200px;
    margin:auto;

    height:90px;

    padding:0 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* ===============================
   LOGO
================================= */

.logo{
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.logo-name{
    font-family:Georgia, serif;
    font-size:2.4rem;
    color:#fff;
    font-weight:500;
    margin:8px 0;
}

.logo-line{
    width:180px;
    height:3px;
    background:#D4AF37;
    border-radius:10px;
}

.logo-sub{
    font-family:Georgia, serif;
    font-size:1rem;
    color:#fff;
    margin-top:5px;
}

/* ===============================
   NAVIGATION
================================= */

nav{

    display:flex;
    align-items:center;
    gap:35px;

}

nav a{

    color:#fff;
    text-decoration:none;
    font-weight:600;
    position:relative;
    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

/* ===============================
   BOOK BUTTON
================================= */

.book-btn{

    background:var(--gold);

    color:#111!important;

    padding:12px 26px;

    border-radius:40px;

    font-weight:700;

}

.book-btn::after{

    display:none;

}

.book-btn:hover{

    background:#fff;

}

/* ===============================
   MOBILE MENU
================================= */

.menu-toggle{

    display:none;

    font-size:2rem;

    color:var(--gold);

    cursor:pointer;

    background:none;

    border:none;

}

/* ===============================
   HERO
================================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:80px;

    padding:140px 8% 100px;

    background:
    linear-gradient(to right,
    rgba(0,0,0,.92),
    rgba(0,0,0,.70)),
    url("/assests/car.png");

    background-size:cover;

    background-position:center;

}

.hero-left{

    flex:1;

    max-width:650px;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:650px;

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.5));

    animation:float 4s ease-in-out infinite;

}

.small-title{

    color:#fff;

    letter-spacing:8px;

    font-weight:700;

    font-size:1.2rem;

}

.hero h1{

    color:var(--gold);

    font-size:6rem;

    line-height:.95;

    margin:15px 0;

}

.hero h2{

    font-size:3rem;

    margin-bottom:30px;

}

.description{

    color:#ddd;

    line-height:1.8;

    font-size:1.2rem;

    margin-bottom:40px;

}

/* ===============================
   BUTTONS
================================= */

.buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.button{

    background:var(--gold);

    color:#111;

    padding:18px 40px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.button:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(255,215,0,.3);

}

.button-outline{

    border:2px solid var(--gold);

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    padding:18px 40px;

    transition:.3s;

}

.button-outline:hover{

    background:var(--gold);

    color:#111;

}

/* ===============================
   ANIMATION
================================= */

@keyframes float{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}

/* ===============================
   SECTIONS
================================= */

.features-section,
.lessons,
.about{

    width:min(1200px,90%);
    margin:120px auto;
    text-align:center;

}

.section-title{

    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;

}

.section-subtitle{

    max-width:700px;
    margin:0 auto 60px;
    color:var(--grey);
    line-height:1.8;
    font-size:1.15rem;

}

/* ===============================
   FEATURES
================================= */

.features{

    max-width:1200px;
    margin:80px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.card{

    background:var(--card);
    border:1px solid rgba(255,215,0,.15);
    border-radius:20px;

    padding:40px 30px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(255,215,0,.15);

}

.card h3{

    color:var(--gold);

    margin-bottom:15px;

    font-size:1.35rem;

}

.card p{

    color:#ccc;

    line-height:1.8;

}

/* ===============================
   PAGE HERO
================================= */

.page-hero{

    min-height:55vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 30px 80px;

    background:
        linear-gradient(rgba(0,0,0,.65),
        rgba(0,0,0,.75)),
        url("/assests/ll.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.page-overlay{

    max-width:900px;

}

.page-hero h1{

    font-size:4.5rem;
    color:var(--gold);
    margin-bottom:20px;

}

.page-hero p{

    color:#fff;
    font-size:1.2rem;

}

/* ===============================
   CTA
================================= */

.cta{

    width:min(1100px,90%);
    margin:120px auto;

    padding:80px;

    text-align:center;

    border-radius:25px;

    background:linear-gradient(145deg,#181818,#101010);

    border:1px solid rgba(255,215,0,.15);

}

.cta h2{

    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:0 auto 40px;

    color:#d6d6d6;

    font-size:1.2rem;

}

/* ===============================
   FOOTER
================================= */

footer{

    background:#050505;

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h3{

    color:var(--gold);

    margin-bottom:15px;

}

footer p{

    color:#999;

    margin:8px 0;

}

/* ===============================
   LESSONS PAGE
================================= */

.lesson-grid{

    max-width:1200px;
    margin:80px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.lesson-card{

    background:var(--card);

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(255,215,0,.15);

    transition:.3s;

}

.lesson-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.lesson-card h2{

    color:var(--gold);

    margin-bottom:15px;

}

.lesson-card p{

    color:#d0d0d0;

    line-height:1.8;

}

/* ===============================
   INTENSIVE SECTION
================================= */

.intensive{

    max-width:1200px;
    margin:120px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.intensive img{

    width:100%;
    border-radius:20px;

}

.intensive-content ul{

    list-style:none;

    margin:30px 0;

    line-height:2;

}

.intensive-content li{

    color:#ddd;

}

/* ===============================
   PRICING
================================= */

.pricing-grid{

    max-width:1200px;
    margin:80px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;

}

.price-card{

    background:var(--card);

    border:1px solid rgba(255,215,0,.15);

    border-radius:20px;

    padding:45px;

    text-align:center;

    position:relative;

    transition:.3s;

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.featured{

    border:2px solid var(--gold);

}

.badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--gold);

    color:#111;

    padding:8px 20px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:700;

}

.price{

    font-size:3rem;

    font-weight:700;

    color:var(--gold);

    margin:20px 0;

}

.price-card p{

    color:#d0d0d0;

    margin-bottom:30px;

}

/* ===============================
   ABOUT PAGE
================================= */

.about-section{

    max-width:1200px;

    margin:100px auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:420px;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.about-text h2{

    color:var(--gold);

    font-size:2.5rem;

    margin-bottom:25px;

}

.about-text p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:20px;

}

.about-banner{

    width:min(1200px,90%);

    margin:80px auto;

    text-align:center;

}

.about-banner img{

    width:100%;

    max-width:900px;

    display:block;

    margin:auto;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

/* ===============================
   CONTACT
================================= */

.social-card{

    display:block;

    color:#fff;

    text-decoration:none;

}

.social-card:hover{

    color:#fff;

}

.areas-covered{

    max-width:900px;

    margin:40px auto;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.areas-covered span{

    background:#171717;

    color:var(--gold);

    padding:12px 22px;

    border-radius:30px;

    border:1px solid rgba(255,215,0,.2);

    font-weight:600;

    transition:.3s;

}

.areas-covered span:hover{

    background:var(--gold);

    color:#111;

}

.map-container{

    max-width:1200px;

    margin:60px auto;

    padding:0 30px;

}

.map-container iframe{

    width:100%;

    height:500px;

    border:0;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width:900px){

    /* HEADER */

    .navbar{
        height:80px;
        padding:0 20px;
    }

    .menu-toggle{
        display:block;
        font-size:2rem;
        color:var(--gold);
        cursor:pointer;
        background:none;
        border:none;
        z-index:1001;
    }

    #mobile-menu{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:30px 0;
    }

    #mobile-menu.active{
        display:flex;
    }

    /* Hide desktop nav */
    nav:not(#mobile-menu){
        display:none;
    }

    /* HERO */

    .hero{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        gap:40px;
        padding:130px 20px 70px;
    }

    .hero-left,
    .hero-right{
        width:100%;
        max-width:100%;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero h2{
        font-size:1.8rem;
    }

    .small-title{
        font-size:1rem;
        letter-spacing:4px;
    }

    .description{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-right img{
        max-width:320px;
    }

    /* BUTTONS */

    .buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .button,
    .button-outline{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    /* PAGE HERO */

    .page-hero{
        min-height:45vh;
        padding:130px 20px 60px;
    }

    .page-hero h1{
        font-size:2.6rem;
    }

    /* GENERAL SECTIONS */

    .section-title{
        font-size:2rem;
    }

    .section-subtitle{
        font-size:1rem;
        margin-bottom:40px;
    }

    .features{
        grid-template-columns:1fr;
        gap:20px;
        margin:60px auto;
        padding:0 20px;
    }

    .card{
        padding:30px 25px;
    }

    /* ABOUT */

    .about-section{
        display:flex;
        flex-direction:column;
        text-align:center;
        gap:35px;
        padding:0 20px;
        margin:60px auto;
    }

    .about-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .about-image img{
        width:100%;
        max-width:300px;
        height:auto;
        border-radius:20px;
    }

    .about-text{
        width:100%;
    }

    .about-text h2{
        font-size:2rem;
    }

    .about-text p{
        font-size:1rem;
        line-height:1.8;
    }

    .about-banner{
        width:100%;
        padding:0 20px;
        margin:50px auto;
    }

    .about-banner img{
        width:100%;
        max-width:100%;
    }

    /* LESSONS */

    .lesson-grid{
        grid-template-columns:1fr;
        padding:0 20px;
    }

    .intensive{
        grid-template-columns:1fr;
        gap:40px;
        padding:0 20px;
    }

    /* PRICING */

    .pricing-grid{
        grid-template-columns:1fr;
        padding:0 20px;
    }

    .price-card{
        padding:35px 25px;
    }

    .price{
        font-size:2.5rem;
    }

    /* CONTACT */

    .areas-covered{
        gap:10px;
        padding:0 20px;
    }

    .areas-covered span{
        width:100%;
        text-align:center;
    }

    .map-container{
        padding:0 20px;
    }

    .map-container iframe{
        height:350px;
    }

    /* CTA */

    .cta{
        margin:70px 20px;
        padding:50px 25px;
    }

    .cta h2{
        font-size:2rem;
    }

    .cta p{
        font-size:1rem;
    }

    /* FOOTER */

    footer{
        padding:40px 20px;
    }

    .logo-name{
        font-size:1.7rem;
    }

    .logo-line{
        width:90px;
    }

    .logo-sub{
        font-size:.85rem;
    }

}


