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

:root {
    --dark-brown: #3D2314;
    --medium-brown: #5D3A1A;
    --light-brown: #8B5A2B;
    --cream: #F5F0E6;
    --light-cream: #FAF8F3;
    --gold: #C9A66B;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--cream);
    color: var(--dark-brown);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--dark-brown);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(61, 35, 20, 0.85), rgba(61, 35, 20, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%233D2314" opacity="0.3"/></svg>');
    background-color: var(--dark-brown);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #D4B07A;
}

/* Navigation */
.nav {
    background-color: var(--medium-brown);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    margin: 0;
}

.nav a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    padding: 15px 25px;
    transition: background 0.3s;
}

.nav a:hover {
    background-color: var(--dark-brown);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.bg-light {
    background-color: var(--light-cream);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--cream);
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 35, 20, 0.15);
}

.product-img {
    width: 100%;
    height: 120px;
    background-color: var(--medium-brown);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--light-brown);
    margin-bottom: 15px;
}

.price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item h3 {
    color: var(--medium-brown);
    margin-bottom: 10px;
}

/* Contact */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: var(--cream);
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .nav a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
    }

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

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