/* Resta – 2 renk: #0e1326 (ana koyu), #b03049 (vurgu) */
:root {
    -webkit-text-size-adjust: 100%;
    --color-primary: #0e1326;
    --color-accent: #b03049;
    --bg-dark: #0e1326;
    --bg-card: #141b2d;
    --bg-card-hover: #1a2340;
    --red: #b03049;
    --red-hover: #c93d5c;
    --red-soft: rgba(176, 48, 73, 0.2);
    --text: #ffffff;
    --text-muted: #9ca3af;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 4px 24px rgba(14, 19, 38, 0.4);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== Header + Hamburger ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14, 19, 38, 0.97);
    border-bottom: 1px solid var(--border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo {
    color: var(--red);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}
.logo:hover { color: var(--red-hover); }
.logo-img {
    display: block;
    width: 280px;
    height: 80px;
    object-fit: contain;
    object-position: left center;
    vertical-align: middle;
}

/* Hamburger - mobilde görünür */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.hamburger .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
.site-header.nav-open .hamburger .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .hamburger .hamburger-line:nth-child(2) {
    opacity: 0;
}
.site-header.nav-open .hamburger .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    display: -webkit-box;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.main-nav > .nav-item + .nav-item {
    margin-left: 8px;
}
.nav-item { position: relative; }
.nav-item.has-dropdown {
    padding-bottom: 8px;
    margin-bottom: -8px; /* bridge hover gap to prevent flicker */
}
.nav-item > a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.2s;
}
.nav-item > a:hover { color: var(--red); }
.nav-item > a.active { color: var(--red); }
.nav-item > a.nav-active-pill {
    background: #ffffff;
    color: var(--red);
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 700;
}
.nav-item > a.nav-active-pill:hover {
    color: var(--red-hover);
    background: #fff5f7;
}
.nav-item .dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    margin-top: 0;
    background: var(--bg-card);
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    margin-left: 0;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.nav-item:hover .dropdown { display: block; }
.nav-item:focus-within .dropdown { display: block; }
.nav-item .dropdown a {
    display: block;
    padding: 10px 18px;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-item .dropdown a:hover {
    background: var(--red-soft);
    color: var(--red-hover);
}

.btn-book {
    background: var(--red);
    border: 2px solid var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-book:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobil: hamburger göster, menü overlay */
@media (max-width: 992px) {
    .logo-img { width: 180px; height: 50px; }
    .hamburger { display: -webkit-flex; display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -8px 0 32px rgba(0,0,0,0.4);
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 101;
        overflow-y: auto;
    }
    .site-header.nav-open .main-nav { transform: translateX(0); }
    .main-nav > .nav-item + .nav-item { margin-left: 0; }
    .nav-item { border-bottom: 1px solid var(--border); }
    .nav-item.has-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .nav-item > a { padding: 14px 0; font-size: 1rem; }
    .nav-item > a.nav-active-pill {
        display: block;
        width: 100%;
        text-align: center;
        margin: 8px 0;
        padding: 12px 14px;
        border-radius: 12px;
    }
    .nav-item .dropdown {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin: 0 0 8px 0;
        border-radius: 8px;
        padding: 4px 0 4px 12px;
    }
    .nav-item.has-dropdown .dropdown { display: none; }
    .nav-item.has-dropdown.is-open .dropdown { display: block; }
    .btn-book { margin-top: 12px; width: 100%; text-align: center; }

    /* Mobile menu is open: keep support widget from overlapping menu */
    body.nav-menu-open .support-fab,
    body.nav-menu-open .support-panel {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}
@media (max-width: 600px) {
    .nav-item > a.nav-active-pill {
        margin: 6px 0;
        padding: 11px 12px;
        font-size: 0.95rem;
    }
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.is-open {
    display: block;
    opacity: 1;
}

/* ===== Hero - Tam ekran slider alanı ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-has-video .hero-slider {
    z-index: 1;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
/* La Tulipe: hero ortalı, zarif tipografi */
.hero-latulipe .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.5) 100%);
}
.hero-text-center {
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.hero-overline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.75rem;
}
.hero-latulipe .hero-title { max-width: none; }
.hero-latulipe .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 520px; }

/* Arka plan: görsel tam alanı kaplar */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}
/* İçerik: sol tarafta, header yüksekliği için üst padding */
.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 2;
    padding: 100px 24px 80px;
}
.hero-slide-content .hero-text {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: max(24px, 5vw);
    padding-right: 24px;
}
.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin: 0 0 1.5rem;
    line-height: 1.5;
    max-width: 520px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(176, 48, 73, 0.45);
}
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(176, 48, 73, 0.5);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.05);
}
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
@media (max-width: 768px) {
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
    }
    .hero-slide-content { padding: 100px 20px 60px; }
    .hero-slide-content .hero-text {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-arrow { width: 44px; height: 44px; left: 16px; right: 16px; font-size: 1.1rem; }
}

/* ===== Sections - Zengin ===== */
.section {
    padding: 100px 24px;
}
.section-dark {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.section-overline {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 0.5rem;
}
/* Timeline / story grid (La Tulipe) */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.timeline-item {
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}
.timeline-item:hover {
    border-color: rgba(176,48,73,0.3);
    transform: translateY(-2px);
}
.timeline-year {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 0.5rem;
}
.timeline-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
}
.timeline-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
/* Dish slider (galeri) */
.section-gallery { padding: 80px 24px; background: var(--bg-card); }
.dish-slider-wrap { overflow: hidden; margin-top: 2rem; }
.dish-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.dish-slider::-webkit-scrollbar { height: 8px; }
.dish-slider::-webkit-scrollbar-track { background: var(--bg-dark); border-radius: 4px; }
.dish-slider::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.dish-slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.dish-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.dish-slide-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.dish-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-slide-cat {
    display: block;
    padding: 8px 1rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}
.dish-slide-title {
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    font-size: 1.1rem;
}
/* Menu tabs (La Tulipe) */
.section-menu { background: var(--bg-dark); }
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.menu-tab {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.menu-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.menu-tab-panel { display: none; }
.menu-tab-panel.active { display: block; }
.menu-list-elegant {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
}
.menu-list-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.25rem;
}
.menu-list-head h4 { margin: 0; font-size: 1.1rem; }
.menu-list-price { color: var(--red); font-weight: 600; white-space: nowrap; }
.menu-list-item p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
/* Reservation CTA kutusu */
.section-reservation-cta { padding: 80px 24px; background: var(--bg-card); }
.reservation-cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(176,48,73,0.12) 0%, var(--bg-dark) 100%);
    border-radius: 20px;
    border: 1px solid var(--border);
}
.reservation-cta-title { margin: 0 0 0.5rem; font-size: 1.75rem; }
.reservation-cta-desc { margin: 0 0 1.5rem; color: var(--text-muted); }
/* Featured chef */
.chef-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.chef-featured-img-wrap {
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border);
}
.chef-featured-img { width: 100%; height: 100%; object-fit: cover; }
.chef-featured-body { padding: 1rem 0; }
.section-title-left { text-align: left; margin-bottom: 0.5rem; }
.chef-role { color: var(--red); font-size: 1rem; margin: 0 0 1rem; }
.chef-desc { color: var(--text-muted); line-height: 1.6; margin: 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .chef-featured { grid-template-columns: 1fr; text-align: center; }
    .chef-featured-img-wrap { margin: 0 auto; }
    .section-title-left { text-align: center; }
}
/* Stats strip */
.section-stats { padding: 60px 24px; background: var(--bg-dark); border-top: 1px solid var(--border); }
.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.stat-item {
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); }

.two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card-mini {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.card-mini h3 { margin: 0 0 10px; color: var(--red); font-size: 1.2rem; }
.card-mini p { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.95rem; }
.link-red {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.link-red:hover { color: var(--red-hover); text-decoration: underline; }

.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.card {
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.12);
}
.card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.05); }
.card h3 { margin: 1.25rem 1.25rem 0; font-size: 1.15rem; }
.card p { margin: 10px 1.25rem 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.card .link-red { margin: 0 1.25rem 1.25rem; display: inline-block; }

/* Menu grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.menu-item {
    display: flex;
    gap: 1rem;
    background: var(--bg-dark);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.menu-item-img {
    width: 100px;
    min-width: 100px;
    aspect-ratio: 1;
    overflow: hidden;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { padding: 1rem; flex: 1; }
.menu-item-body h4 { margin: 0 0 6px; font-size: 1.05rem; }
.menu-item-body p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.menu-item-body .price { color: var(--red); font-weight: 700; font-size: 1.1rem; }
.opening-hours {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 1rem;
}

.team-card { text-align: center; }
.team-img {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    max-width: 180px;
    margin: 0 auto 1rem;
    border: 3px solid var(--border);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin: 0 0 4px; }
.team-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

.testimonials-slider { max-width: 720px; margin: 0 auto; }
.testimonial {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}
.testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.testimonial cite { color: var(--red); font-weight: 600; }

.section-video {
    padding: 0;
    background: var(--bg-dark);
}
.section-video-head {
    padding-top: 80px;
    padding-bottom: 24px;
}
.section-video-title { color: #fff; margin-bottom: 0.5rem; }
.section-video-desc { color: rgba(255,255,255,0.75); margin-bottom: 0; }
/* Tam ekran MP4: responsive, indirme/sağ tık engelli */
.video-wrap-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 320px;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    background: #000;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.video-wrap-fullscreen .video-main {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}
.video-wrap-fullscreen-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}
@media (max-width: 768px) {
    .video-wrap-fullscreen {
        min-height: 280px;
    }
}
@media (orientation: landscape) and (max-height: 500px) {
    .video-wrap-fullscreen {
        min-height: 100vh;
        min-height: 100dvh;
    }
}
.video-wrap {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.video-play { font-size: 4rem; color: var(--red); text-decoration: none; transition: transform 0.2s; }
.video-play:hover { transform: scale(1.1); }
@media (max-width: 768px) {
    .section-video-head { padding-top: 60px; padding-bottom: 16px; }
}

/* Reservation form */
.reservation-form { max-width: 620px; margin: 0 auto 2rem; }
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.reservation-form label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.2s;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--red);
}
.btn-submit {
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    font-size: 1rem;
    transition: transform 0.15s, box-shadow 0.2s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(176, 48, 73, 0.35);
}
.form-success { color: #4ade80; margin-bottom: 1rem; padding: 12px; background: rgba(34,197,94,0.15); border-radius: 10px; }
.form-error { color: #f87171; margin-bottom: 1rem; padding: 12px; background: rgba(248,113,113,0.15); border-radius: 10px; }
.section-contact .contact-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}
.section-contact .contact-form-wrap { margin: 0; }
.section-contact .reservation-form { margin: 0; }
.section-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    text-align: left;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}
.section-contact .contact-info p { margin: 0; font-size: 1rem; }
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}
.contact-info p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 768px) {
    .section-contact .contact-two-cols { grid-template-columns: 1fr; }
}
.text-muted { color: var(--text-muted); text-align: center; }

/* ===== Footer - Header menüsü ile zengin ===== */
.site-footer {
    background: var(--bg-card);
    padding: 48px 24px 28px;
    border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-heading {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--red-hover); }
.foot-item {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.foot-item .icon { margin-right: 8px; }
.foot-item a { color: var(--text-muted); text-decoration: none; }
.foot-item a:hover { color: var(--red-hover); }
.footer-tagline {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.copyright { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* Blog tekil sayfa */
.blog-single { padding: 120px 24px 80px; }
.blog-single-header { margin-bottom: 1.5rem; }
.blog-single-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0 0 0.5rem; line-height: 1.2; }
.blog-single-meta { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.blog-single-image { margin-bottom: 1.5rem; border-radius: 16px; overflow: hidden; }
.blog-single-image img { width: 100%; height: auto; display: block; }
.blog-single-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.blog-single-content { line-height: 1.7; margin-bottom: 2rem; }
.blog-single-keywords { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.blog-single-back { margin: 2rem 0 0; }
.blog-comments {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.blog-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.blog-comments-header h2 {
    margin: 0;
    font-size: 1.4rem;
}
.comment-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.06);
    padding: 6px 12px;
    border-radius: 999px;
}
.comment-success,
.comment-error {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.comment-success {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.comment-error {
    background: rgba(248, 113, 113, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.3);
}
.comment-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
}
.comment-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.comment-author { font-weight: 600; }
.comment-date { color: var(--text-muted); font-size: 0.85rem; }
.comment-body { margin: 0; color: var(--text); line-height: 1.6; }
.comment-empty {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.comment-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.comment-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.comment-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-family: inherit;
}
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form .btn-submit { margin-top: 12px; }
.comment-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Canlı Destek widget */
.support-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(176, 48, 73, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.support-fab:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(176, 48, 73, 0.5); }
.support-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 400px;
    max-width: calc(100vw - 48px);
    max-height: 70vh;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.support-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.support-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}
.support-panel-header h3 { margin: 0; font-size: 1.1rem; }
.support-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}
.support-close:hover { color: var(--text); }
.support-legal {
    padding: 18px;
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
    max-height: 280px;
}
.support-legal-title { font-weight: 700; color: var(--red); margin-top: 0; }
.support-connect-actions { padding: 18px; }
.support-chat-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.support-status {
    padding: 10px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.support-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    min-height: 180px;
    max-height: 260px;
}
.support-msg { margin-bottom: 10px; }
.support-msg-body { display: block; padding: 8px 12px; border-radius: 12px; font-size: 0.9rem; }
.support-msg-visitor .support-msg-body { background: rgba(255,255,255,0.08); margin-left: 0; margin-right: 40px; }
.support-msg-admin .support-msg-body { background: rgba(176, 48, 73, 0.2); margin-left: 40px; margin-right: 0; }
.support-msg-time { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; }
.support-msg-sender { font-size: 0.8rem; font-weight: 600; color: var(--red); display: block; margin-bottom: 4px; }
.support-msg-system { text-align: center; margin: 8px 0; }
.support-msg-system .support-msg-body { background: rgba(255,255,255,0.06); font-size: 0.85rem; color: var(--text-muted); }
.support-input-actions { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.support-end-btn { padding: 8px 14px; font-size: 0.85rem; background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; cursor: pointer; }
.support-end-btn:hover:not(:disabled) { background: rgba(255,255,255,0.08); color: #fff; }
.support-end-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.support-name-form { padding: 18px; }
.support-name-form label { display: block; margin-bottom: 12px; }
.support-name-form input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-dark); color: var(--text); }
.support-name-desc { margin: 0 0 14px; color: var(--text-muted); font-size: 0.95rem; }
.support-input-wrap {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}
.support-input-wrap textarea {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-dark);
    color: var(--text);
    resize: none;
    font-family: inherit;
}
.support-send-btn {
    padding: 10px 18px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.support-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
}

/* ===== Custom Page / Contact Template ===== */
.page-shell {
    padding: 140px 20px 80px;
}
.page-shell-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.page-shell h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 2.8vw, 3rem);
}
.page-content-body {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.contact-head p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.contact-grid-rich {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}
.contact-card,
.contact-map-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.contact-card h2,
.contact-map-card h2 {
    margin-top: 0;
}
.contact-form-rich {
    display: grid;
    gap: 12px;
}
.contact-form-rich label {
    display: grid;
    gap: 6px;
    color: var(--text-muted);
}
.contact-form-rich input,
.contact-form-rich textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    color: var(--text);
    padding: 10px 12px;
    font-family: inherit;
}
.contact-captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.contact-captcha-row img {
    border-radius: 8px;
    border: 1px solid var(--border);
}
.info-side p {
    margin: 0 0 10px;
}
.info-side a {
    color: var(--text);
}
.contact-map-card {
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 16%, rgba(201, 61, 92, 0.2), transparent 36%),
        radial-gradient(circle at 14% 84%, rgba(176, 48, 73, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(20, 27, 45, 0.98) 0%, rgba(16, 22, 38, 0.98) 100%);
    border-color: rgba(176, 48, 73, 0.4);
}
.contact-map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 45%);
}
.contact-map-frame-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 61, 92, 0.45);
    box-shadow: 0 12px 26px rgba(0,0,0,0.25), 0 0 0 1px rgba(176, 48, 73, 0.18) inset;
    position: relative;
}
.contact-map-card iframe {
    border-radius: 14px;
    display: block;
    filter: saturate(0.92) contrast(1.04);
}
.contact-map-frame-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(176, 48, 73, 0.14), rgba(20, 27, 45, 0.08));
}
.contact-map-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}
.contact-map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-map-open-btn:hover { background: linear-gradient(135deg, var(--red-hover) 0%, #9d2b48 100%); }

/* Footer top full-width map band */
.footer-map-band {
    width: 100%;
    padding: 0;
    background: linear-gradient(160deg, #141b2d 0%, #101726 100%);
}
.footer-map-band-inner {
    max-width: none;
    margin: 0 auto;
    border-top: 1px solid rgba(176, 48, 73, 0.35);
    border-bottom: 1px solid rgba(176, 48, 73, 0.35);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 10px 0 0;
    background:
        radial-gradient(circle at 86% 14%, rgba(201, 61, 92, 0.18), transparent 36%),
        linear-gradient(145deg, rgba(20, 27, 45, 0.96), rgba(14, 19, 38, 0.98));
    box-shadow: none;
}
.footer-map-band-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 14px 10px;
}
.footer-map-band-head h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-map-band-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 8px 12px;
}
.footer-map-band-link:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, #9d2b48 100%);
}
.footer-map-band-frame {
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 61, 92, 0.4);
    border-bottom: 1px solid rgba(201, 61, 92, 0.4);
    border-left: 0;
    border-right: 0;
}
.footer-map-band-frame iframe {
    display: block;
    filter: saturate(0.92) contrast(1.04);
    width: 100%;
}

@media (max-width: 900px) {
    .contact-grid-rich {
        grid-template-columns: 1fr;
    }
    .footer-map-band-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Speisekarte Category Pages ===== */
.menu-category-page .menu-category-subtitle {
    color: var(--text-muted);
    margin-top: -6px;
    margin-bottom: 20px;
}
.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.menu-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.menu-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.menu-product-body {
    padding: 14px;
}
.menu-product-body h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.menu-order-no {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 2px 8px;
}
.menu-name-badge-number {
    font-size: 1.08em;
    font-weight: 700;
    color: #c93d5c;
    margin-left: 2px;
    vertical-align: super;
}
.menu-product-body p {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.menu-rich-text {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.menu-rich-text p {
    margin: 0 0 8px;
}
.menu-rich-text p:last-child {
    margin-bottom: 0;
}
.menu-rich-text ul,
.menu-rich-text ol {
    margin: 0 0 10px 18px;
    padding: 0;
}
.menu-rich-text a {
    color: #7dd3fc;
    text-decoration: underline;
}
.menu-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.menu-product-price {
    color: var(--red-hover);
    font-size: 1.05rem;
}
.menu-product-link {
    color: #7dd3fc;
    text-decoration: none;
    font-size: 0.9rem;
}
.menu-product-link:hover { text-decoration: underline; }
.menu-category-empty {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 18px;
    color: var(--text-muted);
}

/* ===== Team Showcase Page ===== */
.team-showcase-head {
    text-align: center;
    margin-bottom: 22px;
}
.team-showcase-head p {
    color: var(--text-muted);
    margin: 0;
}
.team-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.team-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.team-image-zoom {
    border: none;
    background: transparent;
    width: 100%;
    display: block;
    padding: 0;
    cursor: zoom-in;
    position: relative;
}
.team-showcase-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.team-zoom-hint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: #fff;
}
.team-showcase-body {
    padding: 14px;
}
.team-showcase-body h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}
.team-showcase-body p {
    margin: 0;
    color: var(--text-muted);
}
.team-showcase-empty {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    color: var(--text-muted);
}
