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

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

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

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

.logo h2{
    font-size:28px;
    font-weight:700;
    color:#111;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    color:#333;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#d4af37;
}

.icons{
    display:flex;
    gap:20px;
}

.icons i{
    cursor:pointer;
    font-size:18px;
    transition:0.3s;
}

.icons i:hover{
    color:#d4af37;
}

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

.hero{
    height:100vh;

    background:url('../images/hero-banner.jpg');

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

    position:relative;
}

.overlay{
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    display:flex;
    align-items:center;
}

.hero-content{
    width:90%;
    max-width:1400px;
    margin:auto;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    max-width:700px;
}

.hero-content p{
    margin-top:20px;
    font-size:22px;
    font-weight:300;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 40px;

    background:#d4af37;
    color:#fff;

    border-radius:50px;
    font-weight:600;

    transition:0.3s;
}

.btn:hover{
    background:#b8901d;
    transform:translateY(-3px);
}

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

@media(max-width:991px){

    nav{
        display:none;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .logo h2{
        font-size:22px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .btn{
        padding:14px 30px;
    }

}

/* =========================
SECTION TITLE
========================= */

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

.section-title span{
    color:#d4af37;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
    color:#111;
}

.section-title p{
    margin-top:12px;
    color:#777;
}

/* =========================
CATEGORIES
========================= */

.categories{
    padding:100px 0;
    background:#fff;
}

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

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.category-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:0.5s;
    display:block;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-content{
    position:absolute;
    bottom:30px;
    left:30px;
    color:#fff;
}

.category-content h3{
    font-size:28px;
    margin-bottom:10px;
}

.category-content a{
    color:#fff;
    font-weight:600;
}

.category-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.1)
    );
}

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

@media(max-width:991px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

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

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

}