:root {
    color-scheme: light;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #102c57;
    background-color: #f3f6ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f3f6ff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 160px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(23,85,156,0.12);
    backdrop-filter: blur(10px);
}

.site-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(16,44,87,0.08);
    box-shadow: 0 8px 24px rgba(16,44,87,0.06);
}

.brand-logo {
    display: block;
    max-height: 72px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #102c57;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    position: relative;
    transition: color .2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.4rem;
    height: 3px;
    background: transparent;
    border-radius: 999px;
    transition: background .2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #17559c;
}

.nav-link:hover::after,
.nav-link:focus::after {
    background: #ffd24d;
}

.nav-link:hover {
    color: #17559c;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reserve-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background-color: #ffd24d;
    color: #102c57;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(255,210,77,0.25);
}

.reserve-link:hover,
.reserve-link:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255,210,77,0.28);
}

.locale-switcher {
    font-size: 0.92rem;
    color: #102c57;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.btn-yellow {
    background-color: #facc15;
    color: #1f2937;
    border-color: transparent;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #eab308;
    color: #111827;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255,255,255,0.9);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: white;
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,1);
}

.btn-outline-primary {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: rgba(29, 78, 216, 0.08);
}

.cookie-consent {
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 44, 87, 0.12);
    border-radius: 0.9rem;
    bottom: 1rem;
    box-shadow: 0 24px 70px rgba(16, 44, 87, 0.18);
    color: #102c57;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    left: 1rem;
    max-width: min(46rem, calc(100% - 2rem));
    padding: 1rem;
    position: fixed;
    z-index: 900;
}

.cookie-consent__copy {
    display: grid;
    gap: 0.25rem;
}

.cookie-consent__copy strong {
    color: #102c57;
    font-size: 1rem;
    font-weight: 850;
}

.cookie-consent__copy p {
    color: #4d6078;
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
}

.cookie-consent__button {
    background: #ffd24d;
    border: 0;
    border-radius: 999px;
    color: #102c57;
    flex: 0 0 auto;
    font-weight: 800;
    padding: 0.7rem 1rem;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
    background: #f6c52b;
}

.hero-section {
    position: relative;
    padding: 5rem 0 2rem;
    min-height: 58vh;
    background-image: linear-gradient(180deg, rgba(16,44,87,0.94) 0%, rgba(16,44,87,0.84) 35%, rgba(16,44,87,0.96) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&h=400&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: white;
    display: grid;
    place-items: center;
}

.hero-container {
    max-width: 980px;
    width: 100%;
    display: grid;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
}

.hero-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.75rem;
    background: rgba(255,255,255,0.08);
    border-radius: 2rem;
    box-shadow: 0 24px 80px rgba(16,44,87,0.18);
}

.hero-logo {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(16, 44, 87, 0.36));
}

.hero-tagline {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    color: #ffd24d;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-separator {
    width: 160px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd24d 0%, #ffffff 100%);
}

.hero-copy {
    max-width: 840px;
    margin: 0 auto;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.02;
    margin: 0 0 1rem;
}

.hero-copy p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.hero-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.panel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
}

.menu-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-highlight {
    display: flex;
    justify-content: center;
}

.highlight-panel {
    min-height: 320px;
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.highlight-label {
    color: #fde68a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.highlight-panel h2 {
    margin: 0;
    font-size: 2rem;
}

.section {
    padding: 4.5rem 0;
}

.about-section,
.menu-section,
.events-section,
.gallery-section,
.contact-section {
    background: white;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #17559c;
    font-size: 0.85rem;
    font-weight: 700;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    line-height: 1.1;
}

.menu-page-hero {
    background:
        linear-gradient(135deg, rgba(16,44,87,0.94), rgba(23,85,156,0.86)),
        url('img/IMG_20260513_195303.jpg');
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.menu-hero-grid {
    align-items: end;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
}

.menu-hero-copy {
    max-width: 46rem;
}

.menu-hero-copy .section-label {
    color: #ffd24d;
}

.menu-hero-copy h1 {
    font-size: clamp(2.75rem, 8vw, 5rem);
    line-height: 1;
    margin: 0.75rem 0 1rem;
}

.menu-hero-copy p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 40rem;
}

.menu-hero-panel {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 0.5rem;
    box-shadow: 0 28px 80px rgba(8,24,45,0.24);
    color: #102c57;
    display: grid;
    gap: 0.65rem;
    padding: 1.4rem;
}

.menu-hero-panel span {
    color: #17559c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.menu-hero-panel strong {
    font-size: 1.6rem;
    line-height: 1.1;
}

.menu-hero-panel p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.menu-page-section {
    background: #f6f9fc;
    padding: 2rem 0 4.5rem;
}

.menu-category-nav {
    background: #ffffff;
    border: 1px solid rgba(23,85,156,0.12);
    border-radius: 0.5rem;
    box-shadow: 0 18px 48px rgba(15,23,42,0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: -3.25rem 0 3rem;
    padding: 0.65rem;
    position: relative;
    z-index: 2;
}

.menu-category-nav a {
    align-items: center;
    border-radius: 0.4rem;
    color: #102c57;
    display: inline-flex;
    font-weight: 800;
    min-height: 2.6rem;
    padding: 0.65rem 1rem;
}

.menu-category-nav a:hover,
.menu-category-nav a:focus {
    background: #eaf3ff;
    color: #17559c;
}

.order-panel {
    background: #ffffff;
    border: 1px solid rgba(23,85,156,0.12);
    border-radius: 0.5rem;
    box-shadow: 0 18px 52px rgba(15,23,42,0.08);
    margin-bottom: 3rem;
    padding: 1.25rem;
}

.order-panel-header,
.cart-line,
.cart-total {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.order-panel-header h2 {
    color: #102c57;
    font-size: 1.6rem;
    margin: 0;
}

.cart-lines {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cart-line {
    border-top: 1px solid rgba(15,23,42,0.08);
    padding-top: 0.75rem;
}

.cart-line strong,
.cart-line span {
    display: block;
}

.cart-line span,
.muted {
    color: #64748b;
}

.cart-note {
    margin-top: 0.5rem;
    max-width: 26rem;
}

.cart-controls {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 0.5rem;
}

.checkout-button {
    border: 0;
    font-weight: 800;
}

.cart-total {
    border-top: 1px solid rgba(15,23,42,0.12);
    color: #102c57;
    font-size: 1.15rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.checkout-form {
    margin-top: 1rem;
}

.checkout-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-grid label span {
    color: #102c57;
    display: block;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.checkout-error {
    color: #9f1d1d;
    font-weight: 800;
    margin: 0.75rem 0 0;
}

.checkout-action {
    margin-top: 1rem;
}

.checkout-button {
    background: #17559c;
    border-radius: 0.45rem;
    color: #ffffff;
    margin-top: 1rem;
    min-height: 2.8rem;
    padding: 0.75rem 1.2rem;
}

.checkout-button:disabled {
    background: #94a3b8;
}

.order-status-page {
    background: #f6f9fc;
    min-height: 72vh;
    padding: 5rem 0;
}

.order-status-layout {
    display: flex;
    justify-content: center;
}

.order-status-card {
    background: #ffffff;
    border: 1px solid rgba(23,85,156,0.12);
    border-radius: 0.5rem;
    box-shadow: 0 18px 52px rgba(15,23,42,0.08);
    max-width: 42rem;
    padding: 1.5rem;
    width: 100%;
}

.order-status-card h1 {
    color: #102c57;
    font-size: 2rem;
    margin: 0.25rem 0 0.75rem;
}

.order-status-card p {
    color: #475569;
}

.status-pill {
    background: #fff7d6;
    border: 1px solid rgba(255,210,77,0.58);
    border-radius: 999px;
    color: #102c57;
    display: inline-flex;
    font-weight: 900;
    padding: 0.45rem 0.8rem;
}

.order-summary-lines {
    border-top: 1px solid rgba(15,23,42,0.08);
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.order-summary-lines div {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.order-link {
    display: inline-flex;
    text-decoration: none;
}

.menu-category-stack {
    display: grid;
    gap: 3rem;
}

.menu-category-section {
    scroll-margin-top: 150px;
}

.menu-category-header {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.menu-category-header span {
    color: #17559c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.menu-category-header h2 {
    color: #102c57;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.05;
    margin: 0;
}

.info-card,
.menu-card,
.event-card,
.contact-card,
.map-panel,
.gallery-card,
.menu-card-cta {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.08);
}

.info-card,
.menu-card,
.event-card,
.contact-card,
.map-panel,
.menu-card-cta {
    border: 1px solid rgba(23,85,156,0.12);
}

.info-card p,
.menu-card p,
.event-card p,
.contact-card p,
.section p {
    color: #475569;
}

.image-panel {
    min-height: 340px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #fff7cc 0%, #ffecb3 100%);
    box-shadow: inset 0 0 0 1px rgba(23,85,156,0.08);
}

.menu-card,
.restaurant-card,
.event-card,
.contact-card,
.map-panel {
    padding: 1.75rem;
}

.menu-card-column {
    display: flex;
}

.menu-card,
.restaurant-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    width: 100%;
}

.menu-page-card {
    border: 1px solid rgba(23,85,156,0.12);
    box-shadow: 0 18px 52px rgba(15,23,42,0.08);
    overflow: hidden;
    padding: 0;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.menu-page-card:hover,
.menu-page-card:focus-within {
    border-color: rgba(23,85,156,0.28);
    box-shadow: 0 26px 70px rgba(15,23,42,0.12);
    transform: translateY(-2px);
}

.menu-card-image-frame {
    aspect-ratio: 4 / 3;
    background: #eaf3ff;
    overflow: hidden;
    width: 100%;
}

.menu-card-image-frame .menu-card-image {
    border-radius: 0;
    display: block;
    height: 100%;
}

.menu-card-image-placeholder {
    align-items: center;
    color: #17559c;
    display: flex;
    font-size: 2.25rem;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    letter-spacing: 0.08em;
}

.menu-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.35rem;
}

.menu-card-title-row {
    align-items: start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.menu-card-title-row h3 {
    margin: 0 0 0.75rem;
}

.menu-price {
    background: #fff7d6;
    border: 1px solid rgba(255,210,77,0.58);
    border-radius: 0.4rem;
    color: #102c57;
    flex: 0 0 auto;
    font-weight: 900;
    line-height: 1;
    padding: 0.55rem 0.65rem;
}

.menu-card p,
.restaurant-card p {
    flex: 1 1 auto;
}

.menu-card-actions {
    margin-top: auto !important;
}

.menu-card h3,
.restaurant-card h3,
.event-card h3,
.contact-card h2,
.highlight-panel h2 {
    margin-bottom: 0.75rem;
}

.menu-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.menu-card-cta h3 {
    margin-bottom: 0.5rem;
}

.menu-card-cta p {
    margin-bottom: 1.25rem;
    color: #475569;
}

.event-card-image-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 1rem;
    overflow: hidden;
    background: #f8fafc;
}

.event-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #17559c;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.event-card-highlight {
    border-color: rgba(23,85,156,0.18);
    background: #f2f8ff;
}

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

.gallery-card {
    min-height: 240px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f8fafc;
}

.map-frame {
    width: 100%;
    min-height: 220px;
    border-radius: 1.25rem;
    border: 0;
    display: block;
}

.opening-hours li {
    margin-bottom: 0.65rem;
    color: #475569;
}

.site-footer {
    padding: 3rem 0 1.75rem;
    background:
        linear-gradient(180deg, #102c57 0%, #0d2448 100%);
    color: rgba(255,255,255,0.92);
}

.app-version-footer {
    align-items: center;
    background: #0d2448;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.62);
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.85rem 1rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-version-footer strong {
    color: rgba(255,255,255,0.86);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.brand-footer {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd24d;
    margin-bottom: 0.5rem;
}

.footer-logo-link {
    display: inline-block;
    padding: 0.35rem 0.45rem;
    background: rgba(255,255,255,0.08);
    border-radius: 0.9rem;
}

.footer-logo {
    max-height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(255,255,255,0.14));
}

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

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

.footer-links a:hover,
.social-links a:hover {
    color: white;
}

.social-links {
    display: grid;
    gap: 0.75rem;
}

.footer-grid h3 {
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 992px) {
    .hero-container,
    .menu-hero-grid,
    .footer-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-navbar {
        gap: 0.75rem;
    }

    .nav-links {
        justify-content: center;
    }

    .menu-hero-panel {
        max-width: 28rem;
    }
}

@media (max-width: 768px) {
    .site-navbar {
        padding: 1rem;
    }

    .hero-section {
        padding: 3.5rem 0 3rem;
    }

    .hero-copy h1 {
        font-size: 2.6rem;
    }

    .hero-highlight {
        justify-content: stretch;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .menu-page-hero {
        padding: 2.75rem 0 4rem;
    }

    .menu-category-nav {
        margin-top: -4rem;
    }

    .menu-category-nav a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .menu-card-title-row {
        align-items: stretch;
        flex-direction: column;
        gap: 0.25rem;
    }

    .menu-price {
        align-self: flex-start;
    }

    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
        right: 1rem;
    }

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