/* ── VARIABLES & RESET ── */
:root {
    --rot:      #8B1A1A;
    --rot-tief: #3D0C02;
    --gold:     #D4AF37;
    --amber:    #E8A020;
    --orange:   #E05C1A;
    --creme:    #FBF3E4;
    --creme2:   #EFE0C4;
    --gruen:    #1B5E20;
    --text:     #2C1810;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background: var(--creme);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    background: rgba(61, 12, 2, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    gap: 12px;
}

.nav-logo { height: 64px; flex-shrink: 0; }

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: .88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover { color: #fff; }

/* ── LANGUAGE COMBOBOX ── */
.lang-select { position: relative; flex-shrink: 0; }

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(212, 175, 55, .45);
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    transition: background .18s, border-color .18s;
    white-space: nowrap;
    user-select: none;
}

.lang-trigger:hover {
    background: rgba(212, 175, 55, .16);
    border-color: var(--gold);
}

.lang-trigger .t-flag { font-size: 1.3rem; line-height: 1; border-radius: 3px; overflow: hidden; }
.lang-trigger .t-code { color: var(--gold); font-size: .88rem; font-weight: 700; letter-spacing: 1px; }

.lang-arrow {
    color: var(--gold);
    font-size: .7rem;
    margin-left: 1px;
    transition: transform .2s;
    display: inline-block;
}

.lang-select.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(25, 6, 3, 0.97);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 12px;
    overflow: hidden;
    list-style: none;
    min-width: 170px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .6);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 300;
}

.lang-select.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    cursor: pointer;
    color: rgba(255, 255, 255, .65);
    transition: background .14s, color .14s;
}

.lang-option:not(:last-child) { border-bottom: 1px solid rgba(212, 175, 55, .1); }
.lang-option:hover { background: rgba(212, 175, 55, .15); color: #fff; }

.lang-option.active {
    background: rgba(212, 175, 55, .1);
    color: var(--gold);
}

.lang-option .o-flag  { font-size: 1.4rem; line-height: 1; border-radius: 3px; overflow: hidden; }
.lang-option .o-code  { font-family: 'Oswald', sans-serif; font-size: .85rem; font-weight: 700; min-width: 26px; }
.lang-option .o-name  { flex: 1; font-size: .88rem; }
.lang-option .o-check { color: var(--gold); font-size: .85rem; visibility: hidden; }
.lang-option.active .o-check { visibility: visible; }

@media (max-width: 600px) { .nav-links { display: none; } }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 140, 0, .18) 0%, transparent 60%),
        radial-gradient(ellipse at top center, #2D0505 0%, #8B1A1A 45%, #C04010 80%, #E06020 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255, 255, 255, .015) 40px, rgba(255, 255, 255, .015) 41px
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 70px;
    background: var(--creme);
    clip-path: ellipse(54% 100% at 50% 100%);
}

.hero-logo {
    width: clamp(200px, 45vw, 340px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-sub {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(.85rem, 2.5vw, 1.05rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
    position: relative;
    z-index: 1;
}

.hero-flames {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 24px;
    position: relative;
    z-index: 1;
}

.hero-flames img {
    height: 144px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .4));
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}

.btn:hover { transform: translateY(-3px); }

.btn-gold {
    background: linear-gradient(135deg, #F0C040, #D4850A);
    color: var(--rot-tief);
    box-shadow: 0 4px 18px rgba(212, 133, 10, .4);
}

.btn-gold:hover { box-shadow: 0 8px 28px rgba(212, 133, 10, .55); }

.btn-green {
    background: linear-gradient(135deg, var(--gruen), #2E7D32);
    color: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

.btn-green:hover { box-shadow: 0 8px 26px rgba(0, 0, 0, .4); }

.btn-orange {
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 160, 32, .4);
    width: 100%;
    justify-content: center;
}

.btn-orange:hover { box-shadow: 0 8px 26px rgba(232, 160, 32, .55); }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
    z-index: 500;
    transition: transform .25s, box-shadow .25s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}

/* ── SECTION HEADER ── */
.section-head { text-align: center; margin-bottom: 45px; }

.ornament {
    display: block;
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 12px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 700;
    color: var(--rot);
    line-height: 1.15;
}

.section-subtitle {
    color: #999;
    font-size: .85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ── MENU SECTION ── */

.menu-section {
    background: var(--creme);
    padding: 40px 20px;
}

.menu-wrapper { max-width: 820px; margin: 0 auto; }

/* ── MENU PARTS ── */
.menu-part { position: relative; width: 100%; }
.menu-part > img { width: 100%; display: block; }

/* Header label over red bar */
.menu-header-label {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Section header (Menu-Body-Section.png) */
.menu-part-section { position: relative; }
.menu-part-section > img { width: 100%; display: block; }
.menu-section-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(.95rem, 2.2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

/* Body area (Menu-Body-Body.png) */
.menu-part-body { display: flex; flex-direction: column; }
.menu-body-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}
.menu-body-content {
    position: relative;
    z-index: 1;
    padding: 4% 11% 4%;
}

.menu-rows { display: flex; flex-direction: column; }
.menu-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(139,26,26,.2);
}
.menu-row:last-child { border-bottom: none; }
.menu-row-emoji { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.menu-row-img { width: 180px; height: 124px; object-fit: contain; flex-shrink: 0; border-radius: 6px; }
.menu-row-img-sm { width: 192px; height: 192px; object-fit: contain; flex-shrink: 0; border-radius: 6px; }
.menu-row-info { flex: 1; }
.menu-row-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--rot);
    text-transform: uppercase;
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.menu-row-desc { font-size: .8rem; color: #666; line-height: 1.5; margin-top: 1px; }
.vegan-marker { height: 32px; width: auto; }
.menu-row-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rot);
    white-space: nowrap;
    padding-left: 10px;
    border-left: 2px solid var(--gold);
    flex-shrink: 0;
}
.menu-row-side .menu-row-name { color: var(--text); }
.menu-row-side .menu-row-price { color: var(--text); }
.spicy { font-size: .8rem; }

.menu-part-footer { display: flex; flex-direction: column; }
.menu-footer-cta {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
}

/* ── HALAL STRIP ── */
.halal-strip {
    background: linear-gradient(135deg, #200808, #8B1A1A 50%, #200808);
    padding: 18px 20px;
    text-align: center;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(.9rem, 2.5vw, 1.1rem);
    letter-spacing: 3px;
}

/* ── TRUST SECTION ── */
.trust-section {
    background: linear-gradient(180deg, var(--creme) 0%, var(--creme2) 100%);
    padding: 70px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 35px;
    max-width: 780px;
    margin: 0 auto;
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }

.trust-icon-wrap {
    border-radius: 50%;
    background: rgba(139, 26, 26, .08);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.trust-icon {
    width: 90px; height: 90px;
    object-fit: contain;
}

.trust-label {
    font-family: 'Oswald', sans-serif;
    font-size: .9rem; font-weight: 600;
    color: var(--rot);
    text-transform: uppercase; letter-spacing: 1px;
}

/* ── LOCATION SECTION ── */
/* ── ABOUT ── */
.about-section {
    background: var(--creme);
    padding: 70px 20px 60px;
    text-align: center;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    align-items: center;
}
.about-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p { color: var(--text); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-tagline { font-family: 'Cinzel', serif; font-size: 1.1rem !important; color: var(--rot) !important; font-weight: 600; margin-top: 8px !important; }
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }

/* ── CONTACT ── */
.contact-section {
    background: var(--rot);
    padding: 70px 40px;
}
.contact-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.contact-logo-col img {
    width: 100%;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.4));
}
.contact-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: .04em;
}
.contact-tagline {
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    margin-bottom: 28px;
}
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    font-size: 1.05rem;
    transition: color .2s, transform .2s;
}
.contact-link:hover { color: var(--gold); transform: translateX(6px); }
.contact-link i {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background .2s;
}
.contact-link:hover i { background: var(--gold); color: var(--rot); }

@media (max-width: 700px) {
    .contact-inner { grid-template-columns: 1fr; text-align: center; }
    .contact-logo-col img { width: 160px; margin: 0 auto; display: block; }
    .contact-link { justify-content: center; }
}

.location-section {
    background: linear-gradient(145deg, #120404 0%, #3D0C02 50%, #1a0a0a 100%);
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .15) 0%, transparent 70%);
    pointer-events: none;
}

.location-section .section-title { color: var(--gold); }
.location-section .section-subtitle { color: rgba(255, 255, 255, .45); }
.location-section .ornament { color: rgba(212, 175, 55, .5); }

.location-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 22px;
    padding: 36px 28px;
    max-width: 1400px;
    margin: 0 auto 25px;
    color: #fff;
}

.loc-date {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px; text-transform: uppercase;
    font-size: .9rem; margin-bottom: 10px;
}

.loc-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    font-weight: 700; margin-bottom: 8px;
}

.loc-address { color: rgba(255, 255, 255, .65); font-size: .95rem; margin-bottom: 6px; }

.loc-hours {
    color: var(--amber);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; margin-bottom: 24px;
}

.loc-loading { color: rgba(255, 255, 255, .45); font-style: italic; }

.loc-error-icon { font-size: 2.5rem; margin-bottom: 10px; }
.loc-error-text { color: rgba(255, 255, 255, .55); font-size: .95rem; }
.loc-error-hint { color: rgba(255, 255, 255, .35); font-size: .82rem; margin-top: 6px; }

.loc-layout {
    display: grid;
    grid-template-columns: 3fr 320px;
    gap: 32px;
    align-items: start;
    text-align: left;
}
.loc-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.loc-info { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.loc-character {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.loc-character img {
    width: 300px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.loc-next-badge {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .04em;
}

.map-embed-wrapper {
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .25);
    display: none;
}

.map-embed-wrapper iframe { width: 100%; height: 480px; border: none; display: block; }
#map-js { width: 100%; height: 480px; }

@media (max-width: 1200px) {
    .loc-layout { grid-template-columns: 1fr; }
    .loc-character { display: none; }
}
@media (max-width: 700px) {
    .loc-layout { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
    background: #0e0404;
    color: rgba(255, 255, 255, .45);
    text-align: center;
    padding: 35px 20px;
    font-size: .83rem;
}

footer img { height: 55px; margin-bottom: 14px; filter: brightness(0) invert(1) opacity(.35); }
footer a { color: var(--gold); text-decoration: none; }

.footer-social { display: flex; justify-content: center; gap: 22px; margin-top: 14px; font-size: 1.4rem; }
.footer-social a { transition: transform .25s; }
.footer-social a:hover { transform: scale(1.25); }

/* ── SCROLL ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
