/* ==========================================
   HAYYA ARCHERY
   Official Website
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;600;700;800&display=swap');

/* ==========================================
   ROOT
========================================== */

:root{

    --primary:#123C73;
    --secondary:#F4B400;
    --accent:#D62828;

    --white:#ffffff;
    --light:#f8f9fa;
    --dark:#1d1d1d;
    --gray:#6c757d;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:15px;

}

/* ==========================================
   GLOBAL
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:#fff;

}

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;
    font-weight:700;

}

section{

    padding:90px 0;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.container{

    max-width:1200px;

}
/* ==========================================
   HERO
========================================== */

#hero{
    position: relative;
    min-height: 100vh;
    background: url('../images/banner/hero-desktop.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,20,40,.88) 0%,
        rgba(8,20,40,.75) 40%,
        rgba(8,20,40,.35) 100%
    );
}

.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
    padding-top: 80px;
}
.hero-button .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.hero-subtitle{
    color: var(--secondary);
    font-size:16px;
    letter-spacing:5px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-title{
    font-size:120px;
    line-height:100px;
    font-weight:800;
    margin:20px 0;
}
.hero-tagline{
    font-size:38px;
    line-height:38px;
    font-weight:600;
    margin-bottom:25px;
}
.hero-description{
    font-size:22px;
    line-height:25px;
    max-width:520px;
    margin-bottom:45px;
    color:rgba(255,255,255,.9);
}
.btn-hayya{
    background: var(--secondary);
    color:#000;
    padding:14px 36px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-hayya:hover{
    background:#ffca2c;
    transform:translateY(-2px);
}

.btn-outline-hayya{
    border:2px solid #fff;
    color:#fff;
    padding:14px 36px;
    border-radius:50px;
    font-weight:700;
}

.btn-outline-hayya:hover{
    background:#fff;
    color:#123C73;
}
.text-gold{
    color: var(--secondary);
}
/* ================= NAVBAR ================= */

#navbar{
    transition:.35s;
    padding:18px 0;
}

#navbar.scrolled{
    background:rgba(18,60,115,.92);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    padding:10px 0;
}

.navbar-brand img{
    height:55px;
}

.nav-link{
    color:#fff;
    font-weight:500;
    margin-left:15px;
}

.nav-link:hover{
    color:var(--secondary);
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:991px){

    #hero{
        background-position:center;
        background-size:cover;
    }

    .hero-content{
        max-width:100%;
        padding-top:80px;
    }

    .hero-title{
        font-size:82px;
        line-height:76px;
    }

    .hero-tagline{
        font-size:30px;
        line-height:36px;
    }

    .hero-description{
        font-size:18px;
        line-height:30px;
        max-width:100%;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    #hero{

        background:url('../images/banner/hero-mobile.jpg') center top no-repeat;
        background-size:cover;
        min-height:100vh;

    }

    #hero::before{

        background:linear-gradient(
            to bottom,
            rgba(10,20,40,.75),
            rgba(10,20,40,.55),
            rgba(10,20,40,.75)
        );

    }

    .hero-content{

        padding-top:120px;
        max-width:100%;

    }

    .hero-subtitle{

        font-size:12px;
        letter-spacing:4px;
        margin-bottom:18px;

    }

    .hero-title{

        font-size:72px;
        line-height:66px;
        margin-bottom:18px;

    }

    .hero-tagline{

        font-size:20px;
        line-height:28px;
        margin-bottom:20px;

    }

    .hero-description{

        font-size:16px;
        line-height:28px;
        margin-bottom:35px;

    }

    .hero-button{

        display:flex;
        gap:12px;

    }

    .hero-button .btn{

        flex:1;
        width:auto;
        padding:14px 0;
        font-size:16px;

    }

}

@media (max-width:480px){

    .hero-title{

        font-size:62px;
        line-height:58px;

    }

    .hero-tagline{

        font-size:18px;
        line-height:24px;

    }

    .hero-description{

        font-size:15px;
        line-height:26px;

    }

}
/* ==========================================
   MOBILE NAVBAR
========================================== */

@media (max-width:991px){

    .navbar-collapse{

        margin-top:15px;
        padding:20px;
        border-radius:15px;

        background:rgba(18,60,115,.97);
        backdrop-filter:blur(15px);

    }

    .navbar-nav{

        align-items:flex-start !important;

    }

    .nav-link{

        margin:8px 0;
        margin-left:0;
        font-size:18px;

    }

    .navbar .btn{

        width:100%;
        margin-top:15px;

    }

}
/* ==========================================
   MOBILE MENU PREMIUM
========================================== */

.navbar-toggler{

    color:#fff;
    font-size:34px;
    border:none;

}

.navbar-toggler i{

    transition:.35s;

}

.navbar.menu-open{

    background:rgba(18,60,115,.97);
    backdrop-filter:blur(15px);
    box-shadow:0 8px 25px rgba(0,0,0,.25);

}

@media(max-width:991px){

    .navbar-collapse{

        margin-top:20px;

        background:transparent;

        padding:0;

    }

    .navbar-nav{

        background:rgba(18,60,115,.96);

        border-radius:18px;

        padding:18px;

        box-shadow:0 10px 30px rgba(0,0,0,.25);

    }

    .nav-link{

        margin:0;
        padding:14px 10px;

        font-size:18px;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .nav-item:last-child .nav-link{

        border:none;

    }

    .navbar .btn{

        margin-top:18px;

        width:100%;

        border-radius:50px;

    }

}
/* ==========================================
   WHY HAYYA
========================================== */

#why{

    background:#f8fafc;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    justify-content:center;

    align-items:center;

}

.why-icon i{

    font-size:34px;

    color:var(--primary);

}

.why-card h4{

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:30px;

}

.section-subtitle{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:4px;

}

.section-title{

    font-size:42px;

    margin-top:10px;

}

@media(max-width:768px){

    .section-title{

        font-size:34px;

    }

    .why-card{

        padding:35px 25px;

    }

}
/* ==========================================
   PROGRAM
========================================== */

#program{

    background:#fff;

}

.program-card{

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.program-card:hover{

    transform:translateY(-10px);

}

.program-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.program-card:hover img{

    transform:scale(1.08);

}

.program-content{

    padding:30px;

}

.program-content span{

    color:var(--secondary);

    font-weight:700;

}

.program-content h3{

    margin:10px 0 15px;

}

.program-content p{

    color:#666;

    line-height:28px;

    margin-bottom:25px;

}

@media(max-width:768px){

    .program-card img{

        height:220px;

    }

}