/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    background: url('../assets/h1.png') no-repeat center center/cover;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Product Card */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h5 {
    margin: 10px 0 5px;
}

.product-card p {
    font-size: 0.9rem;
    color: #555;
}

.product-card button {
    width: 100%;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.9rem;
}
/* Sidebar categories */
#sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}
#sidebar h5 {
    margin-bottom: 15px;
}
#sidebar .category-btn {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}
/* Hero Section */
.hero {
    background: url("../assets/h1.png") no-repeat center center;
    background-size: cover; /* Make it cover the entire header */
    color: white;
    position: relative;
    min-height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7); /* optional: improves text readability */
}
.hero .container {
    z-index: 2;
}