:root {
    --primary-green: #1b4332;
    --accent-gold: #d4af37;
    --light-gray: #f8f9fa;
    --text-dark: #333;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hero Styling */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    letter-spacing: 10px;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.btn {
    padding: 15px 30px;
    background: var(--accent-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

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

/* Grid Styling */
.ingredients {
    padding: 80px 10%;
    background: var(--light-gray);
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-green);
}

.card h3 {
    color: var(--primary-green);
}

/* Benefits Section */
.benefits {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
    background: var(--primary-green);
    color: white;
    text-align: center;
}

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

footer {
    padding: 20px;
    text-align: center;
    background: #111;
    color: #777;
    font-size: 0.8rem;
}