:root {
    --bg-color: #1a1a1a;
    --primary-color: #2E4035; /* Dark Green from logo */
    --text-color: #e0e0e0;
    --heading-color: #f5f5f5;
    --accent-color: #D3D3D3; /* Light Grey from logo bg */
    --card-bg: #252525;
    --border-color: #444;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: 50px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--heading-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.cta-button, .cta-button-nav, .cta-button-large {
    background-color: var(--primary-color);
    color: var(--heading-color);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.cta-button-nav {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cta-button:hover, .cta-button-nav:hover, .cta-button-large:hover {
    background-color: #3f5a4a;
    transform: translateY(-2px);
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px); /* Full height minus header */
    padding: 2rem;
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('background.png');
    background-size: cover;
    background-position: center;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.content-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0; /* For fade-in animation */
    transform: translateY(30px); /* For fade-in animation */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

#about .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    margin-top: 3rem;
}

.about-logo {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
}

#cta-final p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button-large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

footer {
    text-align: center;
    padding: 2rem 5%;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin: 0;
}

.footer-nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--heading-color);
}

.privacy-content {
    text-align: left;
    max-width: 800px;
    margin: 3rem auto;
    color: var(--text-color);
}

.privacy-content h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}


@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        gap: 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    #about .about-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}