/* ========================================
   Tenzaro Restaurant - Main Stylesheet
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3d1b;
    --primary-light: #4a7c4b;
    --accent-color: #d4a574;
    --accent-dark: #b8895f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --background-light: #f8f7f4;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-base: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* ===== Navigation ===== */
.navbar {
    background-color: rgba(26, 61, 27, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(26, 61, 27, 1);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white !important;
    letter-spacing: 1px;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-reserve {
    background-color: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
}

.btn-reserve:hover {
    background-color: var(--accent-dark) !important;
    transform: translateY(-2px);
}

.btn-reserve::after {
    display: none;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 61, 27, 0.8) 0%, rgba(44, 95, 45, 0.6) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-section {
        background-attachment: scroll;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-header .lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ===== Page Header ===== */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===== Taste Map Section ===== */
.taste-map-section {
    background-color: var(--background-light);
}

.taste-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.taste-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.taste-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.taste-card:hover::before {
    transform: scaleX(1);
}

.taste-card.pacific::before { background: linear-gradient(90deg, #1e88e5, #64b5f6); }
.taste-card.prairie::before { background: linear-gradient(90deg, #f57c00, #ffb74d); }
.taste-card.european::before { background: linear-gradient(90deg, #6a1b9a, #ba68c8); }

.taste-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.taste-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.taste-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.taste-examples {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.taste-examples .badge {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== Harvest Section ===== */
.harvest-section {
    background: white;
}

.harvest-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.harvest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.harvest-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.harvest-content {
    padding: 2rem;
}

.harvest-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.harvest-content .location {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Notebook Section ===== */
.notebook-section {
    background: linear-gradient(135deg, #f5f3ef 0%, #e8e6e1 100%);
}

.notebook-article {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
}

.notebook-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.notebook-meta .date {
    color: var(--text-muted);
    font-style: italic;
}

.notebook-meta .tags .badge {
    background-color: var(--primary-color);
    color: white;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
}

.notebook-article h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ===== Experiential Section ===== */
.experiential-section {
    background: white;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.experience-card.featured {
    border: 3px solid var(--accent-color);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
}

.experience-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.experience-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.experience-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.experience-includes li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.experience-includes li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.cancellation-note {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.corporate-events-callout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.corporate-events-callout h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ===== Lab Section ===== */
.lab-section {
    background: var(--background-light);
}

.lab-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lab-experiment {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.lab-experiment h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Ambient Section ===== */
.ambient-section {
    background: white;
}

.ambient-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition-base);
    height: 100%;
}

.ambient-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.ambient-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ambient-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.ambient-card h4 {
    margin-bottom: 1rem;
}

.lighting-note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

.lighting-note svg {
    display: inline-block;
    width: 20px;
    height: 20px;
    stroke: var(--accent-color);
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* ===== Reservation Section ===== */
.reservation-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 6rem 0;
}

.reservation-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.reservation-card h2 {
    margin-bottom: 1rem;
}

.reservation-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reservation-form .form-control,
.reservation-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-base);
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.15);
}

.reservation-form .invalid-feedback {
    display: none;
    font-size: 0.875rem;
    color: var(--error-color);
    margin-top: 0.25rem;
}

.reservation-form .form-control.is-invalid,
.reservation-form .form-select.is-invalid {
    border-color: var(--error-color);
}

.reservation-form .form-control.is-invalid ~ .invalid-feedback,
.reservation-form .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

/* ===== Timeline Section ===== */
.timeline-section {
    background: var(--background-light);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: calc(50% + 50px);
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-marker {
        left: 20px;
    }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-dark) 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-contact,
.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-contact li,
.footer-hours li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* ===== Buttons ===== */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-light {
    background-color: white;
    color: var(--text-dark);
}

.btn-light:hover {
    background-color: var(--background-light);
}

/* ===== Contact Page ===== */
.contact-info-section {
    padding: 4rem 0;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
}

.contact-info-card .small-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hours-section {
    background: var(--background-light);
}

.hours-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
}

.hours-list .time {
    color: var(--text-light);
}

.accessibility-list {
    list-style: none;
    padding: 0;
}

.accessibility-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.accessibility-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.hours-card .note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-form-section {
    padding: 4rem 0;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.15);
}

.map-section {
    padding: 0;
    position: relative;
}

.map-container {
    position: relative;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.map-info-card h4 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .map-info-overlay {
        position: static;
        padding: 2rem;
    }
    .map-info-card {
        max-width: 100%;
    }
}

/* ===== Policy Pages ===== */
.policy-page {
    padding: 5rem 0 4rem;
}

.policy-content {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.policy-content h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.policy-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table tbody tr:nth-child(even) {
    background: var(--background-light);
}

.cookie-preferences-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }
    .cookie-table {
        font-size: 0.9rem;
    }
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== About Page ===== */
.manifesto-section {
    padding: 4rem 0;
}

.manifesto-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.manifesto-content .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.chef-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.chef-content .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.chef-recognition h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.chef-recognition ul {
    list-style-position: inside;
}

.team-section {
    padding: 6rem 0;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
}

.team-info .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sustainability-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.sustainability-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sustainability-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.sus-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sus-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.responsibility-section {
    padding: 6rem 0;
}

.cta-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.cta-buttons {
    margin-top: 2rem;
}

/* ===== Corporate Page ===== */
.corporate-info-section {
    padding: 4rem 0;
}

.corporate-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.corporate-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hours-list-corporate {
    list-style: none;
    padding: 0;
}

.hours-list-corporate li {
    padding: 0.5rem 0;
}

.corporate-events-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.corporate-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.corporate-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.corporate-service-card h3 {
    margin-bottom: 1rem;
}

.corporate-service-card ul {
    margin: 1.5rem 0;
}

.price-indicator {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
}

.partnerships-section {
    padding: 6rem 0;
}

.partnership-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.catering-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.press-section {
    padding: 6rem 0;
}

.press-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.press-card h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.press-card ul {
    margin-left: 1.5rem;
}

.employment-section {
    padding: 6rem 0;
    background: var(--background-light);
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-consent-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent-buttons {
        flex-direction: column;
    }
    .cookie-consent-buttons .btn {
        width: 100%;
    }
}

/* ===== Modal Styles ===== */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid var(--border-color);
    background: var(--background-light);
}

.modal-title {
    color: var(--primary-color);
}

.modal-footer {
    border-top: 2px solid var(--border-color);
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== Loading States ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* ===== Responsive Utilities ===== */
@media (max-width: 576px) {
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    section {
        padding: 4rem 0;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .footer,
    .cookie-consent-banner,
    .btn,
    .hero-scroll {
        display: none;
    }
    body {
        color: black;
    }
}