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

:root {
    --primary-color: #1a2a3a;
    --secondary-color: #c9a962;
    --accent-color: #d4b574;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #faf8f5;
    --background-dark: #1a1a1a;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

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

header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo a:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/pexels-arthousestudio-4344429.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/pexels-larbigno-18675295.jpg') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

section {
    padding: 5rem 0;
}

.intro {
    background-color: var(--background-light);
}

.intro h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.intro .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.intro p {
    max-width: 900px;
    margin: 0 auto;
}

.features {
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

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

.feature-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-light);
}

.reservations {
    background-color: var(--primary-color);
    color: var(--white);
}

.reservations h2,
.reservations p {
    color: var(--white);
    text-align: center;
}

.reservations h2 {
    margin-bottom: 0.5rem;
}

.reservations > .container > p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reservation-form,
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.consent-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.consent-group label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

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

.btn-primary:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.about-mission,
.about-story {
    padding: 5rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.awards {
    background-color: var(--background-light);
    text-align: center;
}

.awards h2 {
    margin-bottom: 1rem;
}

.awards-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.award-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.award-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--accent-color);
}

.award-icon svg {
    width: 100%;
    height: 100%;
}

.award-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.services-overview {
    padding: 5rem 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-card:nth-child(even) img {
    order: 2;
}

.service-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-left: 0;
}

.service-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.menu-highlights {
    background-color: var(--background-light);
    text-align: center;
}

.menu-highlights h2 {
    margin-bottom: 0.5rem;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-category {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: left;
}

.menu-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-category h3 {
    padding: 1rem 1.5rem 0.5rem;
}

.menu-category p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.patio-dining,
.wine-program {
    padding: 5rem 0;
}

.patio-grid,
.wine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.patio-image img,
.wine-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
}

.patio-features,
.wine-features {
    list-style: none;
    margin-left: 0;
}

.patio-features li,
.wine-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.patio-features li::before,
.wine-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.contact-info {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details h2,
.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-item address {
    font-style: normal;
}

.contact-item .subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

.map-section {
    background-color: var(--background-light);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-note {
    margin-top: 1rem;
    color: var(--text-light);
}

.business-model {
    padding: 5rem 0;
}

.bm-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.bm-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.audience-card {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.audience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.data-item {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.data-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.data-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-content {
    padding: 5rem 0;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content article {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
}

.legal-content address {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    font-style: normal;
    line-height: 1.8;
}

.last-updated {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-table tr:nth-child(even) {
    background-color: var(--background-light);
}

footer {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.legal-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2a3a;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c9a962;
    color: #1a2a3a;
}

.btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-settings {
    background-color: transparent;
    color: #c9a962;
    border: 1px solid #c9a962;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.cookie-option {
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option label {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid .award-card:last-child {
        grid-column: span 2;
    }

    .story-grid,
    .patio-grid,
    .wine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image,
    .patio-image,
    .wine-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a::after {
        display: none;
    }

    .features-grid,
    .awards-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid .award-card:last-child {
        grid-column: span 1;
    }

    .service-card,
    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card img,
    .service-card:nth-child(even) img {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
