:root {
    --brand-primary: #E0A070; /* Earthy Orange/Terracotta */
    --brand-primary-hover: #D39060; /* Slightly darker for hover */
    --brand-secondary: #8D6E63; /* Darker Brown for accents/text */
    --brand-header-name-blue: #3A506B; /* New blue for header name */
    --brand-text-light: #FFFFFF; /* White text on primary */
    --brand-text-dark: #4E423D; /* Dark brown/grey text on light backgrounds */
    --brand-bg-light: #FBF5EF; /* Light beige/cream background */
    --brand-bg-section: #F5EDE4; /* Slightly darker beige for alternate sections */
    --brand-hero-overlay: rgba(46, 37, 33, 0.6); /* Dark brown overlay for hero */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    scroll-behavior: smooth;
    background-color: var(--brand-bg-light);
    color: var(--brand-text-dark);
    line-height: 1.6; 
}

h1, h2, h3, h4, h5, h6, .section-title, 
.card h3, #hero h1, #contact h3, #reservationModal h3, #restaurant h2,
.header-brand-name, 
label[for]
 {
    font-family: var(--font-heading);
    font-weight: 600; 
}

#hero h1 {
    font-weight: 700; 
}

.section-title {
    font-size: 2.8rem; 
    font-weight: 700; 
    margin-bottom: 2.5rem; 
    text-align: center;
    color: var(--brand-secondary);
}
.card h3 {
     font-size: 1.75rem; 
}

.hero-bg {
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    background-color: var(--brand-hero-overlay);
}
.card {
    background-color: white; 
    border-radius: 0.75rem; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.nav-link {
    transition: color 0.3s ease;
    color: var(--brand-text-dark);
    font-family: var(--font-body); 
    font-weight: 700; 
}
.nav-link:hover {
    color: var(--brand-primary);
}

/* Language Dropdown Styles */
.lang-dropdown-button:hover {
    background-color: #F0EBE6; /* Slightly darker beige for hover */
}
.lang-option.active-lang {
    color: var(--brand-primary) !important;
    font-weight: 700;
    background-color: #F0EBE6;
}
 .lang-option:hover {
    background-color: #EAE5E0;
    color: var(--brand-primary);
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
}
.modal-content {
    background-color: var(--brand-bg-light);
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid var(--brand-secondary);
    width: 80%; 
    max-width: 500px;
    border-radius: 0.5rem;
    text-align: center;
}
.modal-close {
    color: var(--brand-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
    color: var(--brand-primary);
    text-decoration: none;
    cursor: pointer;
}
.contact-icon {
    color: var(--brand-primary);
    margin-right: 0.75rem; 
}
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%; 
    border-radius: 0.75rem; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bg-brand-primary { background-color: var(--brand-primary); }
.hover\:bg-brand-primary-hover:hover { background-color: var(--brand-primary-hover); }
.text-brand-primary { color: var(--brand-primary); }
.hover\:text-brand-primary-hover:hover { color: var(--brand-primary-hover); }
.text-brand-secondary { color: var(--brand-secondary); }
.text-brand-text-light { color: var(--brand-text-light); }
.text-brand-text-dark { color: var(--brand-text-dark); }
.bg-brand-bg-light { background-color: var(--brand-bg-light); }
.bg-brand-bg-section { background-color: var(--brand-bg-section); }
.border-brand-primary { border-color: var(--brand-primary); }

.focus\:ring-brand-primary:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--brand-primary);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    border-color: var(--brand-primary);
}
 .focus\:border-brand-primary:focus {
    border-color: var(--brand-primary);
}
.header-logo {
    height: 40px; 
    width: auto;
    margin-right: 0.5rem; 
    flex-shrink: 0; /* Prevent logo from shrinking */
}
.header-brand-name {
    font-size: 1.25rem; /* Base size for smaller screens */
    color: var(--brand-header-name-blue); 
    font-weight: 700; 
    white-space: nowrap; /* Prevent the name text from wrapping */
    overflow: hidden;      /* Hide overflow if name is too long */
    text-overflow: ellipsis; /* Show ... if text is cut */
    flex-shrink: 1; /* Allow name to shrink if needed, but not wrap */
}

@media (min-width: 768px) { /* md breakpoint in Tailwind */
    .header-brand-name {
        font-size: 1.75rem; /* Larger font size for medium screens and up */
    }
}

button, .button, input[type="submit"], input[type="button"] {
    font-family: var(--font-body);
    font-weight: 700; 
}
input, select, textarea {
     font-family: var(--font-body);
}
/* Gallery overlay styles */
.gallery-overlay .gallery-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.5);
}
.gallery-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
}
.gallery-button {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 700;
}
.gallery-caption { color: var(--brand-text-light); margin-top: .5rem; }
/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-secondary);
    color: var(--brand-text-light);
    padding: 1.5rem;
    z-index: 100;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.consent-banner.show {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.consent-text {
    font-size: 0.95rem;
    line-height: 1.5;
}
.consent-text a {
    color: var(--brand-primary);
    text-decoration: underline;
    cursor: pointer;
}
.consent-text a:hover {
    text-decoration: none;
}
.consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.consent-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.consent-btn-accept {
    background-color: var(--brand-primary);
    color: var(--brand-text-light);
}
.consent-btn-accept:hover {
    background-color: var(--brand-primary-hover);
}
.consent-btn-reject {
    background-color: transparent;
    color: var(--brand-text-light);
    border: 1px solid var(--brand-text-light);
}
.consent-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .consent-buttons {
        flex-direction: column;
    }
    .consent-btn {
        width: 100%;
    }
}

/* Privacy Modal Styles */
.privacy-modal-content {
    background-color: var(--brand-bg-light);
    margin: 5% auto; 
    padding: 2rem;
    border: 1px solid var(--brand-secondary);
    width: 90%; 
    max-width: 800px;
    border-radius: 0.5rem;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.privacy-modal-close {
    color: var(--brand-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.privacy-modal-close:hover,
.privacy-modal-close:focus {
    color: var(--brand-primary);
}
.privacy-modal-content h2 {
    color: var(--brand-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}
.privacy-modal-content h2:first-child {
    margin-top: 0;
}
.privacy-modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--brand-text-dark);
}
.privacy-modal-content ul {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}
.privacy-modal-content li {
    margin-bottom: 0.5rem;
    color: var(--brand-text-dark);
}
.privacy-modal-content a {
    color: var(--brand-primary);
    text-decoration: underline;
}
.privacy-modal-content a:hover {
    text-decoration: none;
}