* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff8ee;
    color: #333;
}

/* Header */
.header {
    background:#f37021;
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo {
    color: #fff;
    float: left;
}

nav {
    float: right;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.nav-links a.active,
.nav-links a:hover {
    border-bottom: 2px solid #fff;
}

/* Clear floats */
.header::after {
    content: "";
    display: block;
    clear: both;
}

/* Hero Section */
.hero {
    background: linear-gradient(#fff8ee),
                url('images/hero-onion.jpg') center/cover no-repeat;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
}

.hero h2 {
    font-size: 34px;
    margin-bottom: 0px;
      font-family: 'Cinzel', serif;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.product-card {
    display: flex;
    background: #f9f9f9;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #0a4d3c;
}

/* CTA Section */
.cta {
    background: #f37021;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #fff;
    color: green;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #e0e0e0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #082f26;
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .product-card {
        flex-direction: column;
    }

    .product-card img {
        width: 100%;
        height: 250px;
    }

    nav {
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    .logo {
        float: none;
        text-align: center;
    }
}