:root {
    /* Color Palette */
    --color-primary: #8B2635;
    --color-primary-dark: #641923;
    /* Deep Red */
    --color-secondary: #FFF8F0;
    /* Warm Cream */
    --color-accent: #D4A84B;
    /* Gold/Ochre */
    --color-text: #2D2D2D;
    /* Charcoal */
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Button styled as link for legal modal trigger */
.link-button {
    background: none;
    border: none;
    color: var(--color-primary-dark);
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    font-weight: 600;
}
.link-button:focus,
.link-button:hover {
    color: var(--color-primary);
    outline: none;
}
.link-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--color-accent);
    margin: var(--spacing-xs) auto 0;
}

.section__subtitle {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #6d1e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 38, 53, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--color-accent);
}

.nav__list {
    display: none;
    /* Hidden on mobile by default */
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    /* Header height + spacing */
    padding-bottom: var(--spacing-lg);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    gap: var(--spacing-lg);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.badge {
    background-color: var(--color-accent);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.hero__title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.hero__title .highlight {
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.hero__title .highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(212, 168, 75, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.visual-circle {
    width: 300px;
    height: 300px;
    background-color: #eee;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--color-accent);
}

.visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Section */
.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.about__card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-fast);
}

.about__card:hover {
    transform: translateY(-5px);
}

.about__card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.about__card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

/* Menu Section */
.menu {
    background-color: #fff;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border: 1px solid #eee;
    border-radius: 12px;
    transition: background-color var(--transition-fast);
}

.menu-item:hover {
    background-color: #fcfcfc;
}

.menu-item__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #ddd;
    flex-shrink: 0;
    background-image: url('https://images.unsplash.com/photo-1569718212165-3a8278d5f624?q=80&w=200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.menu-item__content {
    flex: 1;
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.menu-item__header h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.menu-item__header .price {
    font-weight: 700;
    color: var(--color-accent);
}

.menu-item__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.menu__footer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.link-arrow {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 0.75rem;
    transition: gap var(--transition-fast);
}

/* Location Section */
.location__container {
    display: grid;
    gap: var(--spacing-md);
}

.location__info {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 20px;
}

.location__info .section__title,
.location__info h3 {
    color: var(--color-white);
}

.location__info .section__title::after {
    background-color: var(--color-accent);
}

.location__info .address {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* Tablet and small screen responsiveness for opening hours (770-1200px) */
@media (min-width: 770px) and (max-width: 1200px) {
    .hours ul li {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.98rem;
        line-height: 1.4;
    }
    .hours ul li span {
        display: block;
    }
    .hours ul li span:first-child {
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    .hours ul li span:last-child {
        font-weight: 500;
        opacity: 0.9;
    }
    .hours h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .location__info {
        padding: 1.5rem;
    }
    .location__info .address {
        font-size: 0.99rem;
        line-height: 1.5;
    }
}

/* Mobile responsiveness for opening hours (max 480px) */
@media (max-width: 480px) {
    .hours ul li {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .hours ul li span {
        display: block;
    }
    .hours ul li span:first-child {
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    .hours ul li span:last-child {
        font-weight: 500;
        opacity: 0.9;
        font-size: 0.9rem;
    }
    .hours h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .location__info {
        padding: 1.25rem;
    }
    .location__info .address {
        font-size: 0.98rem;
        line-height: 1.5;
    }
}

.status-badge {
    display: inline-block;
    margin-top: var(--spacing-md);
    background-color: var(--color-accent);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-weight: 600;
    background-image: url('assets/images/map-static.png');
    /* If we had one */
}

/* Contact Section */
.contact__container {
    text-align: center;
    max-width: 600px;
}

.contact__form {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.contact__form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact__form input:focus {
    border-color: var(--color-primary);
}

.socials {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

/* Social Icons */
.social-list {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(139, 38, 53, 0.3);
}

/* Specific adjustments for Footer */
.footer .social-list {
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.footer .social-link {
    border-color: var(--color-white);
    color: var(--color-white);
}

.footer .social-link:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Specific adjustments for Header/Nav */
.nav .social-list {
    margin-left: var(--spacing-md);
}

@media (max-width: 768px) {
    .nav .social-list {
        margin-left: 0;
        margin-top: var(--spacing-md);
        justify-content: center;
    }
}


/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    text-decoration: underline;
}

/* Ensure footer links have sufficient contrast on dark background */
.footer a,
.footer .link-button {
    color: var(--color-white);
    font-weight: 700;
}
.footer a:hover,
.footer .link-button:hover {
    color: var(--color-accent);
}
.footer .link-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Responsive & Mobile Menu */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-white);
        padding: var(--spacing-xl) var(--spacing-md);
        transition: right 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav.open {
        right: 0;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav__link {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 600;
    }

    /* Hamburger Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
    }

    .nav__list {
        display: flex;
        gap: var(--spacing-md);
        align-items: center;
        margin-right: var(--spacing-md);
    }

    .nav__link {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .nav__link:hover {
        color: var(--color-primary);
    }

    .nav__link.active {
        color: var(--color-primary);
    }

    .btn-nav {
        padding: 0.5rem 1.5rem;
        background-color: var(--color-primary);
        color: var(--color-white);
        border-radius: 20px;
    }

    .btn-nav:hover {
        color: var(--color-white);
        background-color: #6d1e2a;
    }

    .nav .social-list {
        margin-left: 0;
        border-left: 1px solid #ddd;
        padding-left: var(--spacing-md);
    }

    .hero__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .visual-circle {
        width: 450px;
        height: 450px;
    }

    .location__container {
        grid-template-columns: 1fr 2fr;
        align-items: stretch;
    }

    .map-placeholder {
        height: 100%;
        min-height: 400px;
    }
}

/* Promo Section */
.promo-section {
    padding-top: 0;
    /* Tight against hero if desired, or standard padding */
    padding-bottom: var(--spacing-md);
    justify-content: center;
    /* Display is toggled inline */
}

.promo-container {
    display: flex;
    justify-content: center;
}

.promo-container img {
    /* A4 Portrait Ratio (210mm / 297mm) */
    aspect-ratio: 1 / 1.414;
    width: 100%;
    max-width: 500px;
    /* Reasonable max width for desktop reading */
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
    /* White border like a paper/photo frame */
    outline: 1px solid #ddd;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--color-white);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-accent);
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    padding: var(--spacing-md);
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.modal-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body strong {
    color: var(--color-primary);
}