:root {
    --primary: #2F5233; /* Forest Green */
    --secondary: #B2D2A4; /* Sage */
    --accent: #F4A261; /* Terracotta */
    --bg-light: #F9F9F4; /* Rice Paper */
    --text-dark: #373F27;
    --text-muted: #5e6651;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    --card-shadow: 0 10px 30px -5px rgba(47, 82, 51, 0.15);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
    }
}

/* Hero */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding-left: 5%;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.btn-leaf {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 50px 0 50px 0; /* Leaf shape */
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-leaf:hover {
    border-radius: 0 50px 0 50px;
    background: #e76f51;
}

/* Grid */
.intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 20px;
}

.intro p.subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.garden-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.garden-card:hover {
    transform: translateY(-8px);
}

.garden-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.read-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--secondary);
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
    text-align: center;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1zm4 0h2v2h-2V1zm4 0h2v2h-2V1zM1 5h2v2H1V5zm4 0h2v2H5V5zm4 0h2v2H9V5zm4 0h2v2h-2V5zm4 0h2v2h-2V5zM1 9h2v2H1V9zm4 0h2v2H5V9zm4 0h2v2H9V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9zM1 13h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zM1 17h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.news-form input[type="email"] {
    padding: 15px;
    border-radius: 8px;
    border: none;
    width: 300px;
    margin-right: 10px;
}

.news-form button {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.privacy-check {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* Cookie - Floating Bubble */
.cookie-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    width: 320px;
    padding: 25px;
    border-radius: 20px 20px 0 20px; /* Bubble shape */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    animation: floatUp 0.6s ease-out forwards;
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-bubble h5 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    float: right;
    margin-top: 10px;
}

.cookie-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--primary);
    color: #e0eacc;
    padding: 60px 0 20px;
    text-align: center;
}

footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
