/* =========================
   GLOBAL
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

a{
    text-decoration:none;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eee;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#111;
}

.logo span{
    color:#f5b400;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#f5b400;
}

.nav-btn{
    background:#f5b400;
    color:#111;
    padding:12px 22px;
    border-radius:8px;
    font-weight:600;
}

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

.hero{
    min-height:60vh;

    background:
    linear-gradient(
        rgba(255,255,255,.78),
        rgba(255,255,255,.78)
    ),
    url("archery\ academy.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    display:block;
    color:#f5b400;
}

.hero p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

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

.primary-btn{
    background:#f5b400;
    color:#111;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    background:#111;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
}

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

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

/* =========================
   ABOUT
========================= */

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

.about h2{
    font-size:42px;
    margin-bottom:20px;
}

.about p{
    margin-bottom:15px;
    color:#555;
}

.about img{
    border-radius:20px;
}

/* =========================
   PRODUCTS
========================= */

.archer-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.product-card{
    width:350px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;

    height:350px;

    object-fit:cover;

    object-position:top;
}

.product-card h3{
    padding:20px 25px 10px;
}

.product-card p{
    padding:0 25px 25px;
    color:#666;
}

.view-profile-btn a{

    display:inline-block;

    background:#0C447C;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.view-profile-btn a:hover{

    background:#F4B400;

    color:#111;

}

/* =========================
   FEATURES
========================= */

.why-us{
    background:#fafafa;
}

.feature-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
}

.feature-box i{
    font-size:40px;
    color:#f5b400;
    margin-bottom:20px;
}

.feature-box h3{
    margin-bottom:10px;
}

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

.page-hero{
    background:#f8f8f8;
    text-align:center;
    padding:100px 0;
}

.page-hero h1{
    font-size:55px;
    margin-bottom:10px;
}

.page-hero p{
    color:#666;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-section{
    padding:80px 0;
}

.gray-bg{
    background:#fafafa;
}

/* =========================
   GALLERY
========================= */

.gallery-grid{

    display:grid;

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

    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
   width:100%;

    height:350px;

    object-fit:cover;

    object-position:top;
}


.gallery-item:hover img{
    transform:scale(1.08);
}
.doris{

    display:grid;

    grid-template-columns: 1fr 1fr;

    gap:40px;

    align-items:center;

    margin-top:60px;
}

.doris-image{

    overflow:hidden;

    border-radius:20px;
}

.doris-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    object-position:center top;

    transition:.3s;
}

.doris-image img:hover{

    transform:scale(1.05);
}

.doris-content h3{

    margin-bottom:15px;
}

.doris-content p{

    line-height:1.8;

    margin-bottom:20px;
}

.doris-content ul{

    padding-left:20px;

    line-height:1.8;
}

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

.cta{
    background:#111;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:30px;
    color:#ddd;
}

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

footer{
    background:#fff;
    border-top:1px solid #eee;
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.footer-grid h3{
    margin-bottom:15px;
}

.footer-grid p{
    color:#666;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding:20px;
    border-top:1px solid #eee;
    color:#777;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;
    color:#fff;

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

    font-size:28px;

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

    z-index:999;
}

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

@media(max-width:900px){

    .hero h1{
        font-size:48px;
    }

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

}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero{
        text-align:center;
    }

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

    .hero h1{
        font-size:38px;
    }

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

    .page-hero h1{
        font-size:38px;
    }

}

/* Aboout Archery */
.about-archery{

    padding:100px 0;

    background:#f9fafb;
}

.archery-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;
}

.archery-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

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

    transition:.3s;
}

.archery-card:hover{

    transform:translateY(-10px);
}

.archery-card h3{

    color:#0C447C;

    margin-bottom:20px;

    font-size:28px;
}

.archery-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;
}

.archery-card h4{

    color:#111;

    margin-bottom:15px;
}

.archery-card ul{

    padding-left:20px;

    color:#666;

    line-height:2;
}

.archery-card li{

    margin-bottom:8px;
}

/* About Us (Academy) */
.about-section{

    padding:100px 0;

    background:#f9fafb;
}

.about-content{

    display:grid;

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

    gap:40px;

    margin-top:50px;
}

.about-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

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

    transition:.3s;
}

.about-card:hover{

    transform:translateY(-10px);
}

.about-card h3{

    color:#0C447C;

    margin-bottom:25px;

    font-size:30px;
}

.about-card p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

    text-align:justify;
}

@media(max-width:768px){

    .about-content{

        grid-template-columns:1fr;
    }

    .about-card{

        padding:30px;
    }
}

/* Contact Us */
.contact-section{

    padding:100px 0;

    background:#f9fafb;
}

.contact-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;
}

.contact-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card h3{

    color:#0C447C;

    margin-bottom:15px;
}

.contact-card p{

    color:#555;

    margin-bottom:15px;

    line-height:1.8;
}

.contact-card hr{

    margin:25px 0;

    border:none;

    border-top:1px solid #eee;
}

.contact-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 28px;

    background:#F4B400;

    color:#111;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.contact-btn:hover{

    background:#0C447C;

    color:#fff;
}

.map-section{

    padding:100px 0;
}

.map-container{

    overflow:hidden;

    border-radius:20px;

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

    margin-top:40px;
}

/* MOBILE NAVBAR */

.menu-toggle{

    display:none;

    cursor:pointer;
}

.menu-toggle span{

    display:block;

    width:30px;

    height:3px;

    background:#111;

    margin:6px 0;

    border-radius:5px;

    transition:.3s;
}

@media(max-width:768px){

    .menu-toggle{

        display:block;
    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 20px rgba(0,0,0,.08);

        display:none;
    }

    .nav-links.active{

        display:flex;
    }

}