﻿html, body {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: #f7efe3;
    color: #2f1835;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
}

/* PAGE SHELL */

.site-shell {
    min-height: 100vh;
    background: #f7efe3;
}

/* HEADER */

.site-header {
    background: #f7efe3;
    color: #2f1835;
    border-bottom: 1px solid #bd7f2d;
}

.header-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 2rem 0.45rem;
    display: grid;
    grid-template-columns: 1fr 1.65fr 1fr;
    align-items: center;
    gap: 1rem;
}

.header-address {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #2f1835;
}

.map-icon {
    color: #341339;
    font-size: 0.9rem;
}

.header-brand {
    text-align: center;
}

    .header-brand h1 {
        display: inline-block;
        margin: 0;
        padding: 0.25rem 3rem 0.35rem;
        color: #341339;
        font-size: clamp(2rem, 3.2vw, 3.55rem);
        font-weight: 400;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        border: 2px solid #2f1835;
        line-height: 1.05;
    }

    .header-brand p {
        margin: 0.35rem 0 0;
        color: #b6792b;
        font-size: 0.75rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
    }

.header-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.85rem;
    text-align: right;
}

    .header-action a {
        color: #341339;
        font-size: 1rem;
        font-style: italic;
        text-decoration: none;
        line-height: 1.2;
    }

.header-qr {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border: 2px solid #bd7f2d;
    border-radius: 6px;
    background: #fffaf2;
    padding: 0.2rem;
}

/* NAV */

.site-nav {
    background: #32103d;
    color: #f8efe3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding: 0.58rem 1rem;
    border-top: 1px solid #bd7f2d;
    border-bottom: 1px solid #bd7f2d;
}

    .site-nav a {
        color: #f8efe3;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.85rem;
        padding: 0.18rem 0;
        border-bottom: 2px solid transparent;
    }

        .site-nav a:hover,
        .site-nav a.active {
            color: #d7a14a;
            border-bottom-color: #d7a14a;
            background: transparent;
        }

/* HERO */

.hero-section {
    min-height: 390px;
    padding: 0;
    background: radial-gradient(circle at 9% 45%, rgba(90, 40, 99, 0.20), transparent 22%), radial-gradient(circle at 88% 35%, rgba(214, 161, 90, 0.28), transparent 24%), linear-gradient(90deg, #f7efe3 0%, #eee3d4 48%, #f8f1e8 100%);
    border-bottom: 2px solid #d6a15a;
}

.hero-card {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    min-height: 390px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.hero-logo {
    width: min(500px, 100%);
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: none;
}

.hero-text {
    text-align: center;
    color: #341339;
}

.eyebrow {
    display: none;
}

.hero-text h1 {
    margin: 0 auto 1rem;
    color: #341339;
    max-width: 620px;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(2.6rem, 4vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
}

    .hero-text h1::before,
    .hero-text h1::after {
        content: "";
        display: block;
        width: 60%;
        height: 1px;
        background: #bd7f2d;
        margin: 0 auto 0.9rem;
    }

    .hero-text h1::after {
        margin: 0.9rem auto 0;
    }

.hero-text p {
    margin: 0 auto;
    max-width: 610px;
    color: #341339;
    font-size: 1.15rem;
    line-height: 1.35;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0.65rem 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: 0.82rem;
}

.primary-button {
    background: #32103d;
    color: #f8efe3;
    border: 2px solid #bd7f2d;
}

.secondary-button {
    background: #f7efe3;
    color: #32103d;
    border: 2px solid #bd7f2d;
}

    .primary-button:hover,
    .secondary-button:hover {
        background: #d7a14a;
        color: #32103d;
    }

/* WELCOME */

.welcome-section {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 2.2rem 2rem 1.35rem;
    text-align: center;
    background: #f7efe3;
}

    .welcome-section h2 {
        margin: 0 0 0.9rem;
        color: #341339;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 400;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        line-height: 1.15;
    }

    .welcome-section p {
        margin: 0 auto;
        max-width: 760px;
        color: #341339;
        font-size: 1.05rem;
        line-height: 1.5;
    }

/* CATEGORY CARDS */

.category-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 2rem 3.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.category-card {
    min-height: 145px;
    padding: 1.4rem 1rem 1.1rem;
    background: rgba(255, 250, 242, 0.72);
    border: 2px double #bd7f2d;
    border-radius: 8px;
    text-align: center;
}

    .category-card h3 {
        margin: 0 0 0.65rem;
        color: #341339;
        font-size: 1rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

        .category-card h3::after {
            content: "";
            display: block;
            width: 70%;
            height: 1px;
            background: #d6a15a;
            margin: 0.8rem auto 0;
        }

    .category-card p {
        margin: 0.8rem 0 0;
        color: #341339;
        font-size: 0.88rem;
        line-height: 1.4;
    }

/* FOOTER */

.site-footer {
    background: #32103d;
    color: #f8efe3;
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 2rem;
    border-top: 2px solid #bd7f2d;
}

    .site-footer h3,
    .site-footer h4 {
        margin: 0 0 0.65rem;
        color: #d7a14a;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .site-footer p {
        margin: 0;
        color: #f8efe3;
        line-height: 1.45;
        font-size: 0.9rem;
    }

.footer-qr {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f8efe3;
    padding: 0.3rem;
    border-radius: 6px;
}

/* RESPONSIVE */

@media (max-width: 950px) {
    .header-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    .header-address,
    .header-action {
        justify-content: center;
        text-align: center;
    }

    .header-brand h1 {
        font-size: 2.2rem;
        padding: 0.2rem 1.4rem;
        letter-spacing: 0.15em;
    }

    .site-nav {
        gap: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.4rem;
        min-height: auto;
    }

    .hero-logo {
        max-width: 360px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-brand h1 {
        font-size: 1.75rem;
        letter-spacing: 0.11em;
    }

    .header-brand p {
        letter-spacing: 0.25em;
    }

    .site-nav {
        gap: 0.9rem;
    }

        .site-nav a {
            font-size: 0.75rem;
        }

    .hero-section {
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        min-width: unset;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-qr {
        margin: 0 auto;
    }
}

/* BLAZOR ERROR UI */

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* INNER PAGES */

.page-hero {
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    background: radial-gradient(circle at 15% 35%, rgba(90, 40, 99, 0.18), transparent 22%), radial-gradient(circle at 85% 35%, rgba(214, 161, 90, 0.24), transparent 24%), linear-gradient(90deg, #f7efe3 0%, #eee3d4 48%, #f8f1e8 100%);
    border-bottom: 2px solid #d6a15a;
}

    .page-hero h1 {
        margin: 0 0 0.75rem;
        color: #341339;
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 400;
        font-style: italic;
        letter-spacing: 0.06em;
    }

    .page-hero p {
        margin: 0 auto;
        max-width: 760px;
        color: #341339;
        font-size: 1.15rem;
        line-height: 1.5;
    }

.menu-page-grid,
.gallery-grid,
.contact-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    display: grid;
    gap: 1.2rem;
}

.menu-page-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
    grid-template-columns: repeat(2, 1fr);
}

.menu-section-card,
.contact-card,
.gallery-placeholder {
    background: rgba(255, 250, 242, 0.78);
    border: 2px double #bd7f2d;
    border-radius: 10px;
    padding: 1.6rem;
    text-align: center;
}

    .menu-section-card h2,
    .contact-card h2 {
        margin: 0 0 0.85rem;
        color: #341339;
        font-size: 1.2rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.13em;
    }

    .menu-section-card p,
    .contact-card p,
    .content-page p {
        color: #341339;
        line-height: 1.55;
    }

.price-note {
    color: #b6792b !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.text-link,
.contact-card a {
    color: #341339;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #d6a15a;
    text-underline-offset: 4px;
}

.gallery-placeholder {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(247, 239, 227, 0.72), rgba(247, 239, 227, 0.72)), radial-gradient(circle at center, rgba(214, 161, 90, 0.35), transparent 60%);
}

    .gallery-placeholder span {
        color: #341339;
        font-size: 1.15rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
    }

.content-page {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    text-align: center;
}

    .content-page h2 {
        margin: 0 0 1rem;
        color: #341339;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

@media (max-width: 850px) {
    .menu-page-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* GALLERY PAGE */

.gallery-intro {
    max-width: 850px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1rem;
    text-align: center;
}

    .gallery-intro h2 {
        margin: 0 0 0.85rem;
        color: #341339;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .gallery-intro p {
        margin: 0 auto 1.25rem;
        color: #341339;
        font-size: 1.05rem;
        line-height: 1.55;
    }

.gallery-facebook-button {
    min-width: 230px;
}

.gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-card {
    overflow: hidden;
    background: rgba(255, 250, 242, 0.82);
    border: 2px double #bd7f2d;
    border-radius: 10px;
}

.gallery-placeholder-art {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(214, 161, 90, 0.35), transparent 24%), radial-gradient(circle at 70% 65%, rgba(90, 40, 99, 0.22), transparent 26%), linear-gradient(135deg, #fff7ec 0%, #efe1cf 100%);
    border-bottom: 1px solid rgba(189, 127, 45, 0.45);
}

    .gallery-placeholder-art span {
        color: #341339;
        font-size: 4rem;
        line-height: 1;
    }

.gallery-card-caption {
    padding: 1.25rem;
    text-align: center;
}

    .gallery-card-caption h3 {
        margin: 0 0 0.65rem;
        color: #341339;
        font-size: 1rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.13em;
    }

        .gallery-card-caption h3::after {
            content: "";
            display: block;
            width: 70%;
            height: 1px;
            background: #d6a15a;
            margin: 0.8rem auto 0;
        }

    .gallery-card-caption p {
        margin: 0.85rem 0 0;
        color: #341339;
        font-size: 0.92rem;
        line-height: 1.45;
    }

@media (max-width: 950px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder-art {
        height: 210px;
    }
}