/* =========================================================
   GLOBAL RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    font-family:Arial,sans-serif;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

section{
    width:100%;
    overflow:hidden;
}

a{
    text-decoration:none;
}

/* =========================================================
   COMMON CONTAINER
========================================================= */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero{
    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:
        clamp(110px,12vw,140px)
        20px
        clamp(70px,8vw,100px);

    background:
        linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.24)),
        url('/assets/images/hero-banner.webp');

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
}

.hero-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:950px;
}

.hero-content h1{
    font-size:clamp(2.4rem,7vw,5.8rem);
    line-height:1.05;
    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;
}

.hero-content p{
    font-size:clamp(1rem,2vw,1.3rem);
    line-height:1.9;

    color:#e2e8f0;

    max-width:760px;
    margin:0 auto 40px;
}

.hero-btns{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;

    gap:18px;
}

.btn-primary,
.btn-secondary{
    min-width:190px;

    padding:16px 32px;

    border-radius:60px;

    font-size:15px;
    font-weight:700;

    transition:0.4s ease;
}

.btn-primary{
    background:#38bdf8;
    color:#ffffff;
}

.btn-primary:hover{
    background:#0ea5e9;
    transform:translateY(-4px);
}

.btn-secondary{
    border:2px solid #ffffff;
    color:#ffffff;
}

.btn-secondary:hover{
    background:#ffffff;
    color:#0f172a;
}

/* =========================================================
   SPORTS SECTION
========================================================= */

.sports-section{
    height:90vh;

    padding:60px 20px;

    background:#f1f5f9;

    display:flex;
    flex-direction:column;
    justify-content:center;

    overflow:hidden;
}

.sports-header{
    max-width:760px;

    margin:0 auto 40px;

    text-align:center;

    flex-shrink:0;
}

.section-tag{
    display:inline-block;

    padding:6px 16px;

    border-radius:50px;

    background:#0f172a;
    color:#ffffff;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:14px;
}

.sports-header h2{
    font-size:clamp(1.8rem,4vw,3.2rem);
    line-height:1.1;

    color:#0f172a;

    margin-bottom:14px;

    font-weight:800;
}

.sports-header p{
    font-size:15px;
    line-height:1.7;

    color:#64748b;
}

.sports-grid{
    max-width:1400px;

    width:100%;

    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:20px;

    flex:1;

    align-items:center;
}

.sport-card{
    position:relative;

    height:100%;

    min-height:280px;
    max-height:360px;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    transition:0.45s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.sport-card:hover{
    transform:translateY(-8px);
}

.sport-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.6s ease;
}

.sport-card:hover img{
    transform:scale(1.1);
}

.sport-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:24px;

    background:
        linear-gradient(
            to top,
            rgba(2,6,23,0.92),
            rgba(2,6,23,0.35),
            transparent
        );
}

.sport-content span{
    color:#cbd5e1;

    font-size:10px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.sport-content h3{
    font-size:clamp(1.5rem,2.5vw,2.1rem);

    color:#ffffff;

    margin-top:10px;

    font-weight:800;
}

.sport-content::after{
    content:'';

    display:block;

    width:50px;
    height:3px;

    border-radius:20px;

    background:#38bdf8;

    margin-top:14px;

    transition:0.4s ease;
}

.sport-card:hover .sport-content::after{
    width:100px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .sports-section{
        height:auto;
        padding:80px 20px;
    }

    .sports-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sport-card{
        height:320px;
    }
}

@media(max-width:768px){

    .sports-grid{
        grid-template-columns:1fr;
    }

    .sport-card{
        height:300px;
    }

    .sports-header{
        margin-bottom:30px;
    }
}

/* =========================================================
   ABOUT PREVIEW
========================================================= */

.about-preview{
    height:90vh;

    padding:60px 20px;

    background:#e93a0e;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.about-preview-container{
    max-width:1400px;

    width:100%;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.about-preview-image{
    position:relative;
    height:100%;
}

.about-preview-image img{
    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:28px;
}

.floating-badge{
    position:absolute;

    left:20px;
    bottom:50px;

    background:rgba(255,255,255,0.95);

    padding:16px 22px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.floating-badge h3{
    font-size:28px;

    color:#0f172a;

    margin-bottom:4px;
}

.floating-badge p{
    font-size:13px;

    color:#475569;
}

.about-preview-content h3{
    font-size:clamp(1.5rem,3.5vw,3.4rem);

    line-height:1.1;

    color:#ffffff;

    margin-bottom:20px;

    font-weight:800;
}

.about-preview-content p{
    font-size:15px;

    line-height:1.8;

    color:rgba(255,255,255,0.85);
}

.about-features{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

    margin-top:24px;
}

.feature-box{
    background:#ffffff;

    padding:20px;

    border-radius:20px;

    transition:0.4s ease;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h4{
    font-size:17px;

    color:#0f172a;

    margin-bottom:8px;
}

.feature-box p{
    font-size:13px;

    line-height:1.7;

    color:#64748b;
}

.read-more-btn{
    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:28px;

    padding:14px 24px;

    border-radius:16px;

    background:#0f172a;

    color:#ffffff;

    font-weight:700;

    transition:0.4s ease;
}

.read-more-btn:hover{
    background:#38bdf8;

    transform:translateY(-4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .about-preview{
        height:auto;

        padding:80px 20px;
    }

    .about-preview-container{
        grid-template-columns:1fr;

        gap:40px;
    }

    .about-preview-image img{
        height:420px;
    }
}

@media(max-width:768px){

    .about-features{
        grid-template-columns:1fr;
    }

    .about-preview-image img{
        height:320px;
    }

    .about-preview-content h2{
        font-size:2.2rem;
    }

    .floating-badge{
        left:15px;
        bottom:15px;

        padding:14px 18px;
    }

    .floating-badge h3{
        font-size:22px;
    }
}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section{
    height:90vh;

    padding:50px 20px;

    background:#ffffff;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.services-container{
    max-width:1400px;

    width:100%;

    margin:auto;
}

.services-header{
    max-width:700px;

    margin:0 auto 22px;

    text-align:center;
}

.services-tag{
    display:inline-block;

    padding:6px 14px;

    border-radius:50px;

    background:#0f172a;
    color:#ffffff;

    font-size:10px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:8px;
}

.services-header h2,
.services-header h3{
    font-size:clamp(1.7rem,3vw,2.8rem);

    line-height:1.05;

    color:#0f172a;

    margin-bottom:10px;

    font-weight:800;
}

.services-header p{
    color:#64748b;

    line-height:1.6;

    font-size:14px;
}

.services-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

.service-card{
    background:#f8fafc;

    padding:32px 28px;

    border-radius:28px;

    transition:0.4s ease;

    border:1px solid transparent;

    height:100%;

    min-height:330px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:#38bdf8;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.service-number{
    font-size:46px;

    font-weight:800;

    color:#e93a0e;

    margin-bottom:12px;

    line-height:1;
}

.service-card h3{
    font-size:24px;

    line-height:1.15;

    color:#0f172a;

    margin-bottom:12px;
}

.service-card p{
    color:#64748b;

    line-height:1.7;

    margin-bottom:20px;

    font-size:14px;
}

.service-btn{
    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#0f172a;

    font-weight:700;

    transition:0.3s ease;
}

.service-btn:hover{
    color:#38bdf8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .services-section{
        height:auto;

        padding:80px 20px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        min-height:auto;
    }
}

/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .sports-section,
body.dark-mode .services-section{
    background:#020617;
}

body.dark-mode .service-card,
body.dark-mode .feature-box{
    background:#0f172a;
}

body.dark-mode .sports-header h3,
body.dark-mode .services-header h3,
body.dark-mode .about-preview-content h2,
body.dark-mode .service-card h3{
    color:#ffffff;
}

body.dark-mode .sports-header p,
body.dark-mode .services-header p,
body.dark-mode .service-card p,
body.dark-mode .feature-box p{
    color:#cbd5e1;
}

body.dark-mode .service-btn{
    color:#ffffff;
}

/* =========================================================
   1400px
========================================================= */

@media(max-width:1400px){

    .sports-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* =========================================================
   1200px
========================================================= */

@media(max-width:1200px){

    .sports-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-preview-container{
        grid-template-columns:1fr;
    }

}

/* =========================================================
   992px
========================================================= */

@media(max-width:992px){

    .hero{
        min-height:100vh;
    }

    .about-preview-image img{
        height:460px;
    }

}

/* =========================================================
   768px
========================================================= */

@media(max-width:768px){

    .hero{
        min-height:100vh;
        padding-top:120px;
        background-position:left 24% center;
    }

    .hero-btns{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
    }

    .sports-grid,
    .services-grid,
    .about-features{
        grid-template-columns:1fr;
    }

    .sport-card{
        height:340px;
    }

    .about-preview-image img{
        height:360px;
    }

    .floating-badge{
        left:16px;
        right:16px;
        bottom:16px;
    }

    .about-preview,
    .sports-section,
    .services-section{
        padding:80px 18px;
    }

}

/* =========================================================
   576px
========================================================= */

@media(max-width:576px){

    .hero-content h1{
        font-size:2.4rem;
    }

    .hero-content p{
        font-size:15px;
    }

    .sport-card{
        height:300px;
    }

    .sport-overlay{
        padding:20px;
    }

    .service-card{
        padding:28px 22px;
    }

    .service-card h3{
        font-size:24px;
    }

    .service-number{
        font-size:44px;
    }

}

/* =========================================================
   420px
========================================================= */

@media(max-width:420px){

    .hero{
        padding-left:16px;
        padding-right:16px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .sports-header h2,
    .services-header h2,
    .about-preview-content h2{
        font-size:2rem;
    }

    .floating-badge{
        padding:14px 18px;
    }

    .floating-badge h3{
        font-size:24px;
    }

    .btn-primary,
    .btn-secondary{
        padding:14px 20px;
    }

}




