/* ===========================
   HUNT BIG KS V3
   =========================== */

:root{
    --green:#2f4f2f;
    --green-dark:#1d331d;
    --tan:#f6f3eb;
    --white:#ffffff;
    --dark:#222;
    --gray:#666;
    --light:#ececec;
    --shadow:0 10px 30px rgba(0,0,0,.12);
    --radius:14px;
    --transition:.3s ease;
}

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--tan);
    color:var(--dark);
    line-height:1.6;
}

/* GLOBAL */

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:80px 0;
}

h1,h2,h3{
    line-height:1.2;
}

h2{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:50px;
}

a{
    text-decoration:none;
    color:inherit;
}

/* HEADER */

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(20,20,20,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:10px 0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:135px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:125px;
    width:auto;
    display:block;
}


.brand-images{
    display:flex;
    align-items:center;
    gap:40px;
   opacity:.95;
}

.dealer-badge{
    height:75px;
    width:auto;
}

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

.nav-links a{
    color:white;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s ease;
    position:relative;
}

.nav-links a:hover,
.nav-links .active{
    color:#b89a62;
}

.nav-links a::after{
    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:#b89a62;
    transition:.3s ease;
}

.nav-links a:hover::after,
.nav-links .active::after{
    width:100%;
}
.dealer-banner{
    display:inline-block;
    padding:10px 20px;
    border:2px solid white;
    border-radius:30px;
    font-weight:bold;
    letter-spacing:1px;
}

/* HERO */

.hero{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero.png");

    background-size:cover;
    background-position:center;
    color:white;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    margin-bottom:25px;
}

.hero h1 span{
    display:block;
    font-size:2.3rem;
    font-weight:400;
    margin-top:10px;
}

.hero p{
    font-size:1.3rem;
    max-width:700px;
    margin:0 auto 40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:40px;
    font-weight:bold;
    transition:var(--transition);
}

.btn-primary{
    background:var(--green);
    color:white;
}

.btn-primary:hover{
    background:var(--green-dark);
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:var(--dark);
}

/* BRAND STRIP */

.brand-strip{
    background:var(--green);
    color:white;
    text-align:center;
    padding:18px;
    font-weight:bold;
    letter-spacing:1px;
}

/* CARDS */

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

.product-card,
.category-card{
    background:white;
    border-radius:var(--radius);
    padding:25px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.product-card:hover,
.category-card:hover{
    transform:translateY(-8px);
}

.product-image{
    width:100%;
    height:220px;
    background:#d7d7d7;
    border-radius:10px;
    margin-bottom:20px;
}

.product-card h3,
.category-card h3{
    margin-bottom:15px;
}

.btn-small{
    display:inline-block;
    margin-top:20px;
    color:var(--green);
    font-weight:bold;
}

/* WHY US */

.dark{
    background:#2c2c2c;
    color:white;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.feature{
    text-align:center;
}

.feature h3{
    margin-bottom:15px;
    color:#d8d8d8;
}
/* WHY HUNTERS CHOOSE */

.feature h3{
    margin-bottom:18px;
    color:var(--green);
    font-size:1.5rem;
    font-weight:800;
}

.feature p{
    color:#444;
    font-size:1.1rem;
    line-height:1.7;
}

.features{
    gap:45px;
}

.feature{
    background:white;
    padding:35px 25px;
    border-radius:14px;
    box-shadow:var(--shadow);
    text-align:center;
}

/* CONTACT */

.contact-banner{
    background:var(--green);
    color:white;
    text-align:center;
}

.contact-banner h2{
    margin-bottom:20px;
}

.contact-banner p{
    margin-bottom:35px;
    font-size:1.1rem;
}

/* FOOTER */

footer{
    background:#181818;
    color:white;
    padding:60px 0;
}

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

footer h3{
    margin-bottom:15px;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

footer a:hover{
    color:#9ed19e;
}
footer p{
    margin-bottom:10px;
}

/* MOBILE */

@media(max-width:850px){

.hero h1{
    font-size:2.8rem;
}

.hero h1 span{
    font-size:1.5rem;
}

.nav-container{
    flex-direction:column;
    padding:20px 0;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:260px;
    text-align:center;
}

h2{
    font-size:2rem;
}
}
