:root {
    /* Culori */
    --color-primary: #2e7d32; /* Verde închis, bază */
    --color-secondary: #8bc34a; /* Verde deschis, accent */
    --color-background: #f5f5dc; /* Bej natural, fundal principal */
    --color-footer-bg: #388e3c; /* Verde închis pentru footer */
    --color-button: #508C50; /* Verde mediu pentru butoane */
    --color-text-dark: #2c3e50; /* Culoare text închisă */
    --color-text-light: #ecf0f1; /* Culoare text deschisă */
    --color-accent: #66bb6a; /* Un accent mai luminos, organic */

    /* Culori de fundal pentru secțiuni (biofilice, organice) */
    --section-bg-1: #fcfaf5;
    --section-bg-2: #e8e5d6;
    --section-bg-3: #dce0db;
    --section-bg-4: #eef2ed;
    --section-bg-5: #f7f9f7;

    /* Fonturi */
    --font-family-base: 'Roboto', sans-serif;
    --font-family-heading: 'Cormorant Garamond', serif;

    /* Spațiere */
    --spacing-unit: 1rem;
    --padding-section: 4rem 2rem;

    /* Raze de colț */
    --border-radius-small: 0.5rem;
    --border-radius-medium: 1rem;
    --border-radius-large: 2rem;

    /* Umbre */
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-clay-1: 6px 6px 12px rgba(0, 0, 0, 0.08), -6px -6px 12px rgba(255, 255, 255, 0.8);
    --shadow-clay-2: inset 3px 3px 6px rgba(0, 0, 0, 0.05), inset -3px -3px 6px rgba(255, 255, 255, 0.5);
}

/* Reset și stiluri de bază */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.7; /* Spațiere generoasă pentru citire */
    color: var(--color-text-dark);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    letter-spacing: 0.02em; /* Ușor spațiu între litere pentru eleganță */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Butoane */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px; /* Forme rotunde */
    font-family: var(--font-family-base);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-light);
    background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-button) 100%); /* Gradient lin */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Umbră subtilă */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px); /* Efect subtil de ridicare */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Umbră mai pronunțată */
    background-image: linear-gradient(135deg, var(--color-button) 0%, var(--color-primary) 100%); /* Inversare gradient sau accentuare */
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Secțiuni de fundal */
.section-bg-1 {
    background-color: var(--section-bg-1);
    padding: var(--padding-section);
}

.section-bg-2 {
    background-color: var(--section-bg-2);
    padding: var(--padding-section);
}

.section-bg-3 {
    background-color: var(--section-bg-3);
    padding: var(--padding-section);
}

.section-bg-4 {
    background-color: var(--section-bg-4);
    padding: var(--padding-section);
}

.section-bg-5 {
    background-color: var(--section-bg-5);
    padding: var(--padding-section);
}

/* Carduri (Claymorphism) */
.card {
    background-color: var(--section-bg-1); /* Culoare de fundal deschisă */
    border-radius: var(--border-radius-large); /* Colțuri rotunjite */
    padding: 2rem;
    box-shadow: 
        var(--shadow-clay-1), /* Umbră exterioară */
        inset 0 0 0 rgba(0, 0, 0, 0); /* Inițial fără umbră interioară */
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-clay-1), /* Umbră exterioară accentuată */
        var(--shadow-clay-2); /* Umbră interioară subtilă la hover */
}

.card-title {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Imagini */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-medium); /* Colțuri rotunjite pentru imagini */
    box-shadow: var(--shadow-subtle); /* Umbră subtilă pentru un aspect organic */
    object-fit: cover; /* Asigură că imaginile acoperă spațiul fără distorsiuni */
}

/* Footer specific */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-secondary);
}

.footer a:hover {
    color: var(--color-accent);
}

/* Utilități Tailwind CSS (se presupune că sunt deja încărcate) */
/* Acestea sunt doar exemple, stilurile de mai sus sunt cele custom */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Media Queries pentru responsivitate */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4, .section-bg-5 {
        padding: 2.5rem 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4, .section-bg-5 {
        padding: 2rem 1rem;
    }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}