/* Resta – 2 renk: #0e1326 (ana koyu), #b03049 (vurgu) */
:root {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    --tap-target-min: 44px;
    --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);
}

@font-face {
    font-family: 'Bently Rittero DEMO VERSION';
    src: url('../fonts/bently_rittero/BentlyRitteroDemoVersion.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bently';
    src: url('../fonts/the_bentley/TheBentley.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rittero';
    src: url('../fonts/ritteru/RitteruRegular-e98Pn.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avengenz';
    src: url('../fonts/avengenz/Avengenz.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
html {
    font-size: 16px;
}
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;
}
/* Semantic heading tags should not alter visual size by default. */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}
.seo-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body.page-loading {
    overflow: hidden;
}
body.page-loading > *:not(.site-page-loader) {
    visibility: hidden;
}
.site-page-loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(24px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 20% 20%, rgba(176, 48, 73, 0.28), transparent 42%),
        radial-gradient(circle at 80% 78%, rgba(176, 48, 73, 0.18), transparent 46%),
        linear-gradient(160deg, #0e1326 0%, #141b2d 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.site-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.site-page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    max-width: 360px;
}
.site-page-loader-logo {
    width: min(240px, 62vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.36));
    animation: loaderPulse 1.6s ease-in-out infinite;
}
.site-page-loader-logo--text {
    width: auto;
    max-width: 100%;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
}
.site-page-loader-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.92; }
    50% { transform: scale(1.035); opacity: 1; }
}
main {
    display: block;
    min-width: 0;
}
img,
video,
svg {
    max-width: 100%;
}

/* ===== 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: flex-start;
    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;
    margin-left: auto;
    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: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.main-nav > .nav-item + .nav-item {
    margin-left: 0;
}
.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-flex;
    align-items: center;
    min-height: var(--tap-target-min);
    transition: color 0.2s;
}
.nav-item > a:hover { color: var(--red); }
.nav-item > a.active { color: var(--red); }
.nav-item > a.nav-main-btn {
    padding: 8px 14px;
    font-weight: 600;
    gap: 7px;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.nav-item > a.nav-main-btn--oval {
    background: rgba(176, 48, 73, 0.16);
    border-color: rgba(176, 48, 73, 0.35);
    color: #ffe7ed;
    border-radius: 999px;
}
.nav-item > a.nav-main-btn--square {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(129, 140, 248, 0.4);
    color: #e6ebff;
    border-radius: 8px;
}
.nav-item > a.nav-main-btn--soft {
    background: rgba(255,255,255,0.05);
    border-color: var(--border);
    color: #d8dee9;
    border-radius: 12px;
}
.nav-item > a.nav-main-btn:hover {
    border-color: rgba(176, 48, 73, 0.55);
    color: #fff;
    background: rgba(176, 48, 73, 0.16);
    transform: translateY(-1px);
}
.nav-item > a.nav-main-btn.nav-custom-colors {
    background: var(--nav-btn-bg);
    border-color: var(--nav-btn-bg);
    color: #ffffff;
}
.nav-item > a.nav-main-btn.nav-custom-colors:hover {
    background: var(--nav-btn-hover, var(--nav-btn-bg));
    border-color: var(--nav-btn-hover, var(--nav-btn-bg));
    color: #ffffff;
}
.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 > a.nav-startseite {
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.nav-item > a.nav-startseite--home {
    background: #ffffff;
    color: var(--red);
    border: 1px solid rgba(176, 48, 73, 0.25);
}
.nav-item > a.nav-startseite--inner {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #e5ecf8;
}
.nav-item > a.nav-startseite--inner:hover {
    border-color: rgba(176, 48, 73, 0.55);
    background: rgba(176, 48, 73, 0.16);
    color: #ffffff;
}
.nav-item > a.nav-custom-colors,
.nav-item > a.nav-custom-colors.nav-active-pill,
.nav-item > a.nav-startseite.nav-custom-colors,
.nav-item > a.nav-startseite.nav-custom-colors.nav-active-pill {
    background: var(--nav-btn-bg) !important;
    border-color: var(--nav-btn-bg) !important;
    color: #ffffff !important;
}
.nav-item > a.nav-custom-colors:hover,
.nav-item > a.nav-custom-colors.nav-active-pill:hover,
.nav-item > a.nav-startseite.nav-custom-colors:hover,
.nav-item > a.nav-startseite.nav-custom-colors.nav-active-pill:hover {
    background: var(--nav-btn-hover, var(--nav-btn-bg)) !important;
    border-color: var(--nav-btn-hover, var(--nav-btn-bg)) !important;
    color: #ffffff !important;
}
.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);
    max-height: min(68vh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.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 i {
    margin-right: 6px;
    opacity: 0.85;
}
.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;
    min-height: var(--tap-target-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}
.btn-book:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: #fff;
    transform: translateY(-1px);
}
.btn-book i,
.nav-item > a.nav-main-btn i {
    margin-right: 2px;
}

/* Mobil: hamburger göster, menü overlay */
@media (max-width: 992px) {
    .header-inner {
        position: relative;
        justify-content: center;
    }
    .logo {
        margin: 0 auto;
    }
    .logo-img { width: 180px; height: 50px; }
    .hamburger {
        display: -webkit-flex;
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 120;
        margin-left: 0;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        align-content: 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;
        overflow-x: hidden;
    }
    .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);
        min-width: 0;
    }
    .nav-item.has-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .nav-item > a {
        padding: 14px 0;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .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;
        max-height: 52vh;
        overflow-y: auto;
    }
    .nav-item > a,
    .nav-item .dropdown a {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .nav-item .dropdown a {
        display: flex;
        align-items: center;
        gap: 8px;
        line-height: 1.3;
        padding-right: 10px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-item.has-dropdown .dropdown { display: none; }
    .nav-item.has-dropdown.is-open .dropdown { display: block; }
    .btn-book,
    .nav-item > a.nav-main-btn { width: 100%; text-align: center; }

    /* Mobile menu is open: keep support widget from overlapping menu */
    body.nav-menu-open .support-book-fab,
    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-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 56.25vw;
    max-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.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.95rem;
    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-slider-logo-wrap {
    width: min(350px, 82vw);
    margin: 0 auto 1.1rem;
}
.hero-slider-logo {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}
.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-has-slider .hero-title,
.t-hero-has-slider .hero-title {
    font-family: 'Bently Rittero DEMO VERSION', 'Bently', 'Rittero', 'Cormorant Garamond', Georgia, serif;
    margin-bottom: 0.15rem;
    /* Photoshop shadow approx: Multiply, 75%, angle 120, distance 5, spread 0, size 5 */
    text-shadow: -2px 4px 5px rgba(0, 0, 0, 0.75);
}
.hero-has-slider .hero-subtitle,
.t-hero-has-slider .hero-subtitle {
    font-family: 'Avengenz', 'Segoe UI', sans-serif;
    color: #b03049;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.15rem, 2.3vw, 1.7rem);
    line-height: 1.1;
    margin: 0 auto 1.65rem;
    max-width: max-content;
    display: inline-block;
    text-align: center;
    transform: translateX(14%);
    /* Photoshop shadow approx: Multiply, 75%, angle 120, distance 5, spread 0, size 5 */
    text-shadow: -2px 4px 5px rgba(0, 0, 0, 0.75);
}
.hero-has-slider .btn-hero,
.t-hero-has-slider .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
}
.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;
    touch-action: manipulation;
}
.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; }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    flex: 0 0 12px;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    line-height: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    appearance: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.hero-dot:hover { transform: scale(1.2); background: rgba(255,255,255,0.8); }
.hero-dot.is-active { background: #fff; border-color: #fff; transform: scale(1.2); }
@media (max-width: 1200px) {
    .hero-has-slider .hero-subtitle,
    .t-hero-has-slider .hero-subtitle {
        transform: translateX(10%);
    }
}
@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-slider-logo-wrap {
        width: min(280px, 86vw);
        margin-bottom: 0.95rem;
    }
    .hero-slider-logo {
        height: 80px;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-has-slider .hero-subtitle,
    .t-hero-has-slider .hero-subtitle {
        font-size: clamp(1rem, 4.8vw, 1.35rem);
        transform: none;
        margin: 0 auto 1.35rem;
        letter-spacing: 0.04em;
        max-width: 90%;
    }
    .hero-dots { bottom: 16px; gap: 10px; }
    .hero-dot { width: 11px; height: 11px; min-width: 11px; min-height: 11px; flex-basis: 11px; }
    .hero-arrow { width: 44px; height: 44px; font-size: 1.1rem; }
    .hero-arrow.prev { left: 12px; right: auto; }
    .hero-arrow.next { right: 12px; left: auto; }
}

/* ===== 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.9rem;
    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.9rem;
    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.9rem;
    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;
    min-height: var(--tap-target-min);
    touch-action: manipulation;
}
.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); }
.footer-links-child {
    padding-left: 10px;
}
.footer-nav-link i {
    margin-right: 6px;
    opacity: 0.9;
}
.footer-nav-link--btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 6px 10px;
    color: #e8eff9;
    background: rgba(255,255,255,0.04);
}
.footer-nav-link--oval { border-radius: 999px; }
.footer-nav-link--square { border-radius: 8px; }
.footer-nav-link--soft { border-radius: 12px; }
.footer-nav-link--custom {
    background: var(--footer-link-bg);
    border-color: var(--footer-link-bg);
    color: #fff !important;
}
.footer-nav-link--custom:hover {
    background: var(--footer-link-hover, var(--footer-link-bg));
    border-color: var(--footer-link-hover, var(--footer-link-bg));
    color: #fff !important;
}
.footer-nav-link--pinned::after {
    content: "\f08d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.95rem;
    margin-left: 7px;
    opacity: 0.8;
}
.footer-nav {
    padding: 18px 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 48, 73, 0.24);
    background: linear-gradient(145deg, rgba(176, 48, 73, 0.15) 0%, rgba(20, 27, 45, 0.28) 100%);
    box-shadow: 0 10px 30px rgba(176, 48, 73, 0.14);
}
.footer-contact {
    padding: 18px 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 48, 73, 0.24);
    background: linear-gradient(145deg, rgba(176, 48, 73, 0.15) 0%, rgba(20, 27, 45, 0.28) 100%);
    box-shadow: 0 10px 30px rgba(176, 48, 73, 0.14);
}
.footer-nav .footer-heading,
.footer-contact .footer-heading {
    color: #fff;
}
.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-about {
    padding: 18px 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 48, 73, 0.32);
    background: linear-gradient(135deg, rgba(176, 48, 73, 0.22) 0%, rgba(139, 38, 64, 0.16) 100%);
    box-shadow: 0 12px 30px rgba(176, 48, 73, 0.18);
}
.footer-about-logo-wrap {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}
.footer-about-logo {
    max-width: 210px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}
.footer-about .footer-heading {
    color: #fff;
}
.footer-about .footer-tagline {
    color: rgba(255, 238, 242, 0.92);
}
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.copyright { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

/* Frontend back-to-top button */
.site-back-to-top {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 980;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: var(--tap-target-min);
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red) 0%, #8b2640 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(176, 48, 73, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.site-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.site-back-to-top:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, #9d2b48 100%);
    box-shadow: 0 12px 26px rgba(176, 48, 73, 0.42);
}

/* 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.95rem; }
.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.95rem;
}

/* Canlı Destek widget */
.support-book-fab {
    position: fixed;
    bottom: 86px;
    right: 24px;
    z-index: 998;
    padding: 11px 18px;
    background: rgba(20, 27, 45, 0.95);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    min-height: var(--tap-target-min);
    touch-action: manipulation;
}
.support-book-fab i {
    color: #f8c9d2;
}
.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;
    min-height: var(--tap-target-min);
    min-width: var(--tap-target-min);
    touch-action: manipulation;
}
.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 8px;
    min-width: var(--tap-target-min);
    min-height: var(--tap-target-min);
    touch-action: manipulation;
}
.support-close:hover { color: var(--text); }
.support-legal {
    padding: 18px;
    overflow-y: auto;
    font-size: 0.95rem;
    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.95rem; color: var(--text-muted); display: block; margin-top: 2px; }
.support-msg-sender { font-size: 0.9rem; 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.92rem; 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.92rem; 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;
    line-height: 1.35;
    overflow-y: auto;
}
.support-send-btn {
    padding: 10px 18px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    min-height: var(--tap-target-min);
    touch-action: manipulation;
}
.support-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.support-send-hint {
    margin: 8px 12px 12px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(176, 48, 73, 0.12);
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    line-height: 1.4;
}
.support-send-hint i {
    margin-right: 6px;
    color: #f8c9d2;
}

@media (min-width: 769px) {
    .support-panel {
        width: 460px;
        max-width: min(92vw, 460px);
    }
    .support-input-wrap {
        flex-direction: column;
        gap: 10px;
    }
    .support-input-wrap textarea {
        width: 100%;
        min-height: 88px;
        flex: none;
    }
    .support-input-actions {
        margin-top: 0;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}

button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
.nav-item .dropdown a {
    min-height: var(--tap-target-min);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.tap-active {
    opacity: 0.88;
}
.is-hidden-by-nav {
    display: none !important;
}

/* Keep mobile/off-canvas nav clean: hide floating support buttons when menu is open */
body.nav-menu-open #support-widget,
body.nav-menu-open .support-book-fab,
body.nav-menu-open .support-fab,
body.nav-menu-open .support-panel {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Keep form controls readable and prevent iOS auto-zoom */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}

@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; }
}
@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }
    .site-mobile-actions {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 999;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        align-items: center;
    }
    .site-mobile-actions > * {
        min-width: 0;
    }
    #support-widget {
        position: static;
        display: contents;
        flex: unset;
        align-items: center;
        gap: 0;
        min-width: 0;
    }
    #support-widget > * {
        min-width: 0;
    }
    .site-back-to-top {
        position: static;
        left: auto;
        bottom: auto;
        z-index: auto;
        width: 100%;
        justify-content: center;
        font-size: 0.92rem;
        padding: 9px 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        white-space: nowrap;
    }
    .support-fab {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        padding: 9px 8px;
        font-size: 0.92rem;
        border-radius: 999px;
        white-space: nowrap;
    }
    .support-book-fab {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        padding: 9px 8px;
        font-size: 0.92rem;
        white-space: nowrap;
    }
    .site-mobile-actions .fab-label-full {
        display: none;
    }
    .site-mobile-actions .fab-label-short {
        display: inline !important;
    }
    .site-mobile-actions .site-back-to-top,
    .site-mobile-actions .support-book-fab,
    .site-mobile-actions .support-fab {
        min-height: 42px;
        line-height: 1;
        gap: 6px;
    }
    body.support-panel-open .site-mobile-actions > .site-back-to-top,
    body.support-panel-open .site-mobile-actions #support-widget > .support-book-fab,
    body.support-panel-open .site-mobile-actions #support-widget > .support-fab {
        opacity: 0;
        transform: translateY(18px);
        pointer-events: none;
    }
    body.support-panel-open .support-panel {
        bottom: calc(8px + env(safe-area-inset-bottom));
        max-height: min(72dvh, calc(100dvh - 16px - env(safe-area-inset-bottom)));
        height: min(72dvh, calc(100dvh - 16px - env(safe-area-inset-bottom)));
    }
    .support-panel {
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        bottom: calc(8px + env(safe-area-inset-bottom));
        max-height: min(72dvh, calc(100dvh - 16px - env(safe-area-inset-bottom)));
        height: min(72dvh, calc(100dvh - 16px - env(safe-area-inset-bottom)));
    }
    .support-chat-wrap {
        min-height: 0;
    }
    .support-messages {
        min-height: 72px;
        max-height: none;
        flex: 1;
    }
    .support-input-wrap {
        flex-direction: column;
        gap: 8px;
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: rgba(17, 24, 39, 0.98);
        padding: 10px;
    }
    .support-input-wrap textarea {
        width: 100%;
        min-height: 56px;
        height: 56px;
        max-height: 56px;
        flex: none;
        font-size: 16px;
        line-height: 1.3;
        overflow-y: auto;
    }
    .support-input-actions {
        margin-top: 0;
        justify-content: stretch;
        flex-wrap: nowrap;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .support-send-btn,
    .support-end-btn {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .support-send-hint {
        display: none;
    }
    .reservation-form input,
    .reservation-form select,
    .reservation-form textarea,
    .comment-form input,
    .comment-form textarea,
    .t-form input,
    .t-form select,
    .t-form textarea {
        font-size: 16px;
    }
}

.fab-label-short {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .nav-item:hover .dropdown { display: block; }
    .btn-book:hover {
        background: var(--red-hover);
        border-color: var(--red-hover);
        color: #fff;
        transform: translateY(-1px);
    }
    .support-book-fab:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.42);
        border-color: rgba(176, 48, 73, 0.55);
        background: rgba(176, 48, 73, 0.18);
    }
    .support-fab:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(176, 48, 73, 0.5); }
}

@media (hover: none), (pointer: coarse) {
    .nav-item:hover .dropdown { display: none; }
    .btn-book:hover,
    .support-book-fab:hover,
    .support-fab:hover,
    .hero-arrow:hover {
        transform: none;
        box-shadow: inherit;
    }
}

/* ===== 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.9rem;
    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.92rem;
    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);
}

/* SEO readability safety net for tiny utility texts across templates. */
body :where(
    small,
    .form-hint,
    [class*='-hint'],
    [class*='-meta'],
    [class*='-date'],
    [class*='-time'],
    [class*='-label'],
    [class*='-badge'],
    [class*='-order'],
    [class*='-liter'],
    [class*='-zoom']
) {
    font-size: 1rem !important;
    line-height: 1.4;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 1200;
}
.cookie-consent-inner {
    margin: 0 auto;
    max-width: 920px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(14, 19, 38, 0.96);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.cookie-consent-text {
    margin: 0;
    color: #e6ebf5;
    font-size: 0.98rem;
    line-height: 1.45;
}
.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 820px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-actions {
        width: 100%;
    }
}
