/* =========================
   HERO SECTION
========================= */

.hero{
    padding:60px 0;
    background:#f8f8f8;
}

.hero-banner{
    position:relative;
    height:650px;
    border-radius:30px;
    overflow:hidden;

    background-image:url('../assets/images/hero-banner.jpg');
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    left:80px;
    top:50%;
    transform:translateY(-50%);
    width:500px;
}

.hero-overlay h1{
    font-size:72px;
    line-height:1.05;
    margin:20px 0;
    color:#111;
}

.hero-overlay p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.tagline{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#777;
    font-size:14px;
}

.btn-primary{
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    display:inline-block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-banner{
        height:600px;
    }

    .hero-overlay{
        left:50px;
        max-width:450px;
    }

    .hero-overlay h1{
        font-size:52px;
    }
}

@media(max-width:768px){

    .hero-banner{
        height:500px;
        background-position:right center;
    }

    .hero-overlay{
        left:30px;
        right:30px;
        max-width:100%;
    }

    .hero-overlay h1{
        font-size:38px;
    }

    .hero-overlay p{
        font-size:16px;
    }

    .btn-primary{
        padding:12px 25px;
    }
}

/* Categories Section */

.categories-section{
    padding:80px 0;
}

.categories-section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    text-decoration:none;
    color:#111;
    text-align:center;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.category-card h3{
    padding:20px;
    font-size:20px;
}

/* Mobile Responsive */

@media(max-width:992px){

    .hero h1{
        font-size:42px;
    }

    .hero-image img{
        height:450px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-image img{
        height:350px;
    }

    .category-grid{
        grid-template-columns:1fr;
    }
}