:root {
    --earthy-green: #5a7247;
    --earthy-green-light: #7a9467;
    --earthy-green-dark: #3d4d30;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-muted: #888888;
    --border-color: #e5e5e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--earthy-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--earthy-green-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.header .navbar-brand {
    font-size: 1.5rem;
    color: var(--earthy-green);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header .navbar-brand:hover {
    color: var(--earthy-green-dark);
}

.header .nav-link {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header .nav-link:hover {
    color: var(--earthy-green);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235a7247' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    padding-top: 80px;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--bg-white);
}

.hero-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.two-col-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.two-col-content.reverse .content-image {
    order: -1;
}

.content-image img {
    border-radius: 4px;
    width: 100%;
    height: auto;
}

.content-text h2 {
    color: var(--earthy-green-dark);
}

.ingredient-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.ingredient-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.ingredient-card h3 {
    color: var(--earthy-green);
    margin-bottom: 0.75rem;
}

.routine-item {
    margin-bottom: 2rem;
}

.routine-item img {
    border-radius: 4px;
    margin-bottom: 1rem;
}

.routine-item h3 {
    color: var(--earthy-green-dark);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
}

.info-box {
    background-color: var(--bg-white);
    border-left: 3px solid var(--earthy-green);
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--earthy-green-dark);
    margin-bottom: 0.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-grid img {
    border-radius: 4px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.contact-form .form-control:focus {
    border-color: var(--earthy-green);
    box-shadow: 0 0 0 2px rgba(90, 114, 71, 0.1);
}

.btn-primary {
    background-color: var(--earthy-green);
    border-color: var(--earthy-green);
    padding: 0.75rem 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--earthy-green-dark);
    border-color: var(--earthy-green-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--earthy-green);
    color: var(--earthy-green);
    padding: 0.75rem 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--earthy-green);
    color: var(--bg-white);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer {
    background-color: var(--earthy-green-dark);
    color: var(--bg-light);
    padding: 3rem 0 1.5rem;
}

.footer h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer-banner {
    background-color: var(--earthy-green);
    color: var(--bg-white);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    margin-right: 0.5rem;
}

.page-header {
    background-color: var(--bg-white);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-content {
    padding: 3rem 0;
}

.page-content h2 {
    margin-top: 2rem;
    color: var(--earthy-green-dark);
}

.page-content h3 {
    margin-top: 1.5rem;
    color: var(--text-primary);
}

.page-content ul, .page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 0.5rem;
}

.limits-section {
    background-color: rgba(90, 114, 71, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    margin: 2rem 0;
}

.limits-section h3 {
    color: var(--earthy-green-dark);
}

.soft-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.soft-cta h2 {
    color: var(--earthy-green-dark);
}

.soft-cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 8rem 0;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .two-col-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3.25rem;
    }
}
