/* ===========================
   LHGK COACHING
   STYLE.CSS
=========================== */

:root{

    --purple:#6A4AA5;
    --purple-light:#8B6ED3;

    --black:#111111;
    --dark:#1B1B1B;
    --grey:#2A2A2A;

    --white:#FFFFFF;

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

    --radius:14px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);

    color:var(--white);

    font-family:'Poppins',sans-serif;

    line-height:1.7;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{

    width:min(1100px,90%);
    margin:auto;

}

/* ===========================
NAVIGATION
=========================== */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 5%;

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(17,17,17,.88);

    backdrop-filter:blur(10px);

}

.logo img{

    width:90px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:white;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--purple-light);

}
.nav-links a.active {

    color: var(--purple-light);

    font-weight: 600;

}
.book-btn{

    background:var(--purple);

    color:white;

    padding:12px 26px;

    border-radius:50px;

    transition:.3s;

}

.book-btn:hover {

    background: var(--purple-light);

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(106, 74, 165, 0.35);

}



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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:url("../images/hero.jpg") center center/cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

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

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(900px,90%);

    padding-top:70px;

}

.hero h1{

    font-family:'Bebas Neue',sans-serif;

    font-size:clamp(4rem,8vw,7rem);

    line-height:1;

    letter-spacing:2px;

}

.hero h1 span{

    color:var(--purple-light);

}

.hero p{

    font-size:1.25rem;

    margin:25px 0;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.primary-btn{
    background: var(--purple);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    transition: .3s;

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

}

.primary-btn:hover{

    background:var(--purple-light);

    transform:translateY(-3px);

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:50px;

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

}

.secondary-btn:hover{

    background:white;

    color:black;

}

/* Hero Highlights */

.hero-highlights{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    font-weight:600;

    margin-top:35px;

}

.hero-highlights p{

    margin:0;

}

/* ===========================
SECTIONS
=========================== */

section{

    padding:100px 0;

}

h2{

    font-family:'Bebas Neue',sans-serif;

    font-size:3rem;

    letter-spacing:2px;

    margin-bottom:25px;

    text-align:center;

}

.about{

    background:var(--dark);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about img{

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

    border-radius:var(--radius);

    box-shadow:var(--shadow);
}

.about ul{

    margin-top:25px;

    list-style:none;

}

.about li{

    margin-bottom:12px;

}
.about-grid{
    display:grid;
    grid-template-columns: 420px 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.about-content{
    text-align:left;
}

.about-content h2{
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:20px;
    line-height:1.8;
}

.coach-qualifications{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.coach-qualifications li{
    padding:15px 0;
}

/* ===========================
CARDS
=========================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    margin-top:50px;

}

.card{

    background:var(--dark);

    padding:35px;

    border-radius:var(--radius);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    border:1px solid var(--purple);

}

.card h3{

    margin-bottom:15px;

}

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

.cta{

    background:linear-gradient(135deg,var(--purple),#3c2866);

    text-align:center;

}

.cta h2{

    margin-bottom:20px;

}

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

footer{

    text-align:center;

    padding:60px 20px;

    background:#090909;

}

footer h3{

    font-family:'Bebas Neue';

    font-size:2rem;

    letter-spacing:2px;

}

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

.menu-toggle{

    display:none;

    font-size:2rem;

    cursor:pointer;

    color:white;

}

@media(max-width:900px){

.nav-links{

display:none;

position:absolute;

top:90px;

left:0;

width:100%;

background:#111;

padding:30px 0;

text-align:center;

}

.nav-links.active{

display:flex;

flex-direction:column;

gap:25px;

}

.menu-toggle{

display:block;

}

.book-btn{

display:none;

}

.about-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:4rem;

}

.hero-highlights{

flex-direction:column;

gap:15px;

}

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
    margin-top:50px;
}

.gallery-image{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.gallery-image:hover{
    transform:scale(1.03);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}/* ===========================
   GALLERY
=========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}/* ================================
   COACHING SECTION
================================ */

.coaching{
    padding:100px 0;
    background:#111111;
}

.coaching h2{
    text-align:center;
    color:#fff;
    margin-bottom:25px;
}

.section-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    color:#d8d8d8;
    line-height:1.7;
}

.coaching-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.coaching-card{
    background:#1B1B1B;
    padding:40px 30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.coaching-card:hover{
    transform:translateY(-8px);
    border-color:#6A4AA5;
    box-shadow:0 20px 40px rgba(106,74,165,.25);
}

.coaching-card h3{
    color:#fff;
    margin-bottom:18px;
}

.coaching-card p{
    color:#CFCFCF;
    line-height:1.8;
}/* ===========================
   TESTIMONIALS
=========================== */

.testimonials {
    background: var(--purple);
    padding: 100px 0;
}

.testimonials h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.testimonials-intro {
    text-align: center;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

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

.testimonial-card {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 35px;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: white;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    color: white;
    font-weight: 600;
}

@media (max-width: 900px) {

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

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

.footer{
    background:#0b0b0b;
    padding:60px 0 30px;
    text-align:center;
}

.footer h3{
    color:#fff;
    margin-bottom:10px;
}

.footer p{
    color:#bdbdbd;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin:35px 0;
}

.footer-links a,
.footer-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#6A4AA5;
}

.footer-contact{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.copyright{
    font-size:.9rem;
    color:#777;
}@media (max-width: 768px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-image img{
        max-width:420px;
        margin:0 auto;
    }

    .about-content{
        text-align:left;
    }

}
.contact{
    padding-bottom:50px;
}
.contact .primary-btn{
    width:fit-content;
    min-width:240px;
    margin:25px auto 0;
}

@media (max-width:768px){
    .contact .primary-btn{
        width:100%;
    }
}