:root {
    --color-white: #fdfcfa;
    --color-green: #40593f;
    --color-green-dark: #334a32;
    --color-terracotta: #9e4a3a;
    --color-nuts: #d2b48c;
    --color-slate: #6b7280;
    --color-dark: #1f2937;
}

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.68;
    color: var(--color-dark);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto Condensed, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

h1 {
    font-size: 62px;
    margin-bottom: 20px;
}

h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    max-width: 70ch;
}

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

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

.container-xl {
    max-width: 1220px !important;
}

header {
    background-color: var(--color-white);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1030;
}

.brand-name {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-green);
    letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--color-dark);
    font-size: 16px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-green);
}

main {
    min-height: calc(100vh - 200px);
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: white;
    font-size: 78px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-balance: true;
}

.content-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-section.bg-light {
    background-color: #f9f8f6;
}

.intro-text ul {
    list-style: none;
    padding-left: 0;
}

.intro-text li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.intro-text li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.season-card {
    padding: 24px;
    background: white;
    border-left: 4px solid var(--color-green);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.season-card h3 {
    color: var(--color-green);
    margin-bottom: 12px;
}

.prep-card {
    padding: 24px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prep-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.prep-card h3 {
    color: var(--color-green);
    margin-bottom: 12px;
    font-size: 20px;
}

.dish-card {
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dish-card h3 {
    font-size: 18px;
    color: var(--color-green);
    margin-bottom: 12px;
}

.dish-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
}

.dish-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.dish-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-terracotta);
}

.blog-card {
    display: block;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 24px;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.blog-card-overlay h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}

.blog-list-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.blog-list-item:nth-child(even) {
    flex-direction: row-reverse;
}

.blog-list-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-list-content h2 {
    margin-bottom: 16px;
    font-size: 28px;
}

.blog-list-content a {
    color: var(--color-green);
}

.table-responsive {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 24px 0;
}

.table {
    margin-bottom: 0;
    background: white;
}

.table thead {
    background-color: var(--color-green);
    color: white;
}

.table thead th {
    border: none;
    padding: 16px;
    font-weight: 500;
}

.table td {
    padding: 14px 16px;
    border-color: #e5e7eb;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: #f9f8f6;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fdfcfa 0%, #f9f8f6 100%);
    border-left: 4px solid var(--color-terracotta);
    padding: 24px;
    border-radius: 6px;
    margin-top: 24px;
}

.disclaimer-box h3 {
    color: var(--color-terracotta);
    margin-bottom: 12px;
    font-size: 18px;
}

.disclaimer-box p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(64, 89, 63, 0.1);
    outline: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.btn {
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-green);
    color: white;
    box-shadow: 0 2px 4px rgba(64, 89, 63, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-green-dark);
    box-shadow: 0 4px 12px rgba(64, 89, 63, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-slate);
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6371;
}

.btn-outline-primary {
    border: 1px solid var(--color-green);
    color: var(--color-green);
    background-color: transparent;
}

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

.btn-link {
    color: var(--color-green);
    text-decoration: underline;
    padding: 0;
    font-size: 16px;
}

.btn-link:hover {
    color: var(--color-green-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.accordion .card {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 12px;
    background: white;
}

.accordion .card-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.accordion .card-header h2 {
    margin: 0;
}

.accordion .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto Condensed, 'Helvetica Neue', Arial, sans-serif;
}

.accordion .btn-link:hover {
    background-color: #f9f8f6;
    color: var(--color-green);
}

.accordion .btn-link.collapsed {
    color: var(--color-dark);
}

.accordion .card-body {
    padding: 16px;
    background-color: #fdfcfa;
    font-size: 16px;
    line-height: 1.6;
}

footer {
    background-color: var(--color-dark);
    color: white;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 30px;
}

footer h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-nuts);
}

footer p {
    font-size: 14px;
    margin-bottom: 8px;
}

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

footer a:hover {
    color: white;
    text-decoration: underline;
}

footer ul {
    margin-bottom: 0;
}

footer li {
    margin-bottom: 8px;
}

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

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-banner-text p:first-child {
    font-weight: 500;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .hero-title {
        font-size: 44px;
    }

    .content-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .blog-list-item {
        flex-direction: column !important;
    }

    .blog-list-image {
        width: 100%;
        height: auto;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .container-xl {
        max-width: 900px !important;
        padding: 0 20px;
    }
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

ul {
    padding-left: 24px;
}

ul li {
    margin-bottom: 8px;
}

ol {
    padding-left: 24px;
}

ol li {
    margin-bottom: 8px;
}

.text-muted {
    color: var(--color-slate);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 48px;
}

.mb-4 {
    margin-bottom: 24px;
}

.g-4 {
    gap: 24px;
}
