:root {
    --primary-color: #E3D4D1;
    --secondary-color: #A8B5A1;
    --dark-green: #4A5746;
    --text-color: #333;
    --white-color: #FFFFFF;
    --light-pink: #F5EBEB;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--dark-green);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

main {
    padding: 0;
}

section {
    padding: 4rem 5%;
}

#hero {
    background-color: var(--light-pink);
    text-align: center;
    padding: 6rem 5%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#products {
    background-color: var(--white-color);
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.product-info ul {
    list-style: none;
    padding: 0;
}

.product-info ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.product-info ul li::before {
    content: '\2713';
    color: var(--dark-green);
    position: absolute;
    left: 0;
}

#about {
    background-color: var(--light-pink);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

#mailing-list {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
}

#mailing-list h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

#mailing-list-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

#mailing-list-form input {
    padding: 0.75rem;
    border: none;
    border-radius: 50px;
    width: 300px;
}

footer {
    background-color: var(--dark-green);
    color: var(--white-color);
    text-align: center;
    padding: 2rem 5%;
}

footer a {
    color: var(--white-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple responsive nav for now */
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    #mailing-list-form {
        flex-direction: column;
        align-items: center;
    }

    #mailing-list-form input {
        width: 100%;
        max-width: 300px;
    }
}
