/* =========================
   HEADER
========================= */
:root {
    --bg: #0b0c10;
    --text: #fff;
    --muted: rgba(255, 255, 255, .75);
    --overlay: rgba(0, 0, 0, .22);
    --card: rgba(255, 255, 255, .06);
    --border: rgba(255, 255, 255, .14);
    --container: 1120px;
    --pad: 16px;
    --btn: 14px;
    --header-h: 72px;
    --glass: rgba(10, 10, 12, 0.18);
    --glass-strong: rgba(10, 10, 12, 0.92);
    --blur: 14px;
    --hero-scale: 1.08;
    --hero-pos-desktop: center;
    --hero-pos-mobile: center;

    --accent: #EAC94A;
    --accent-hover: #DDBB3D;
    --accent-soft: #F6E7A8;
    --accent-muted: rgba(234, 201, 74, 0.12);
    --accent-border: rgba(234, 201, 74, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    width: min(var(--container), 100% - (var(--pad) * 2));
    margin-inline: auto;
}

.section {
    padding: 72px 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
    background: var(--glass-strong);
    border-bottom-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 120px;
    height: 55px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}

.brand-logo:hover {
    opacity: 0.85;
}

@media (max-width: 992px) {
    .brand-logo {
        width: 110px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        width: 96px;
        height: auto;
    }
}

/* Desktop Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    padding: 7px 12px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: var(--accent);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(14, 14, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 6px;
    min-width: 185px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}

.nav-dropdown-item i {
    font-size: 14px;
    color: var(--accent);
    width: 16px;
    flex-shrink: 0;
}

.nav-dropdown-item:hover {
    background: var(--accent-muted);
    color: #fff;
}

.nav-dropdown-toggle .bi-chevron-down {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.22s ease;
}

.nav-dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: var(--btn);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    user-select: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

/* Sarı buton → dolu sarı */
.btn--primary {
    background: var(--accent);
    color: #000;
    border-color: transparent;
}

.btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 22px rgba(234, 201, 74, 0.4);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.20);
    color: var(--text);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.30);
}

/* Hamburger */
.nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.nav-toggle:hover {
    border-color: var(--accent-border);
    background: var(--accent-muted);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--glass-strong);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.mobile-nav.open {
    max-height: 640px;
}

.mobile-nav-inner {
    padding: 12px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.m-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.m-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* Mobile Accordion */
.m-accordion {
    width: 100%;
}

.m-accordion-toggle .bi-chevron-down {
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.25s;
}

.m-accordion-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

.m-accordion-body {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 4px 12px;
}

.m-accordion-body.open {
    display: flex;
}

.m-sub-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-sub-link i {
    color: var(--accent);
    font-size: 13px;
    width: 16px;
    flex-shrink: 0;
}

.m-sub-link:hover {
    background: var(--accent-muted);
    color: #fff;
}

.m-cta {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header-actions .btn--primary {
        display: inline-flex;
        padding: 9px 14px;
        font-size: 12px;
    }

    .header-actions {
        gap: 8px;
    }
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 100svh;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--hero-scale));
    will-change: transform;
}

.hero__video--desktop {
    object-position: var(--hero-pos-desktop);
}

.hero__video--mobile {
    object-position: var(--hero-pos-mobile);
    display: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-h) + clamp(200px, 34vh, 340px));
    padding-bottom: clamp(70px, 12vh, 120px);
    display: grid;
    gap: 16px;
    align-content: center;
    min-height: inherit;
}

.hero__badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    color: var(--muted);
    backdrop-filter: blur(6px);
}

/* Başlık her zaman tek satırda */
.hero__title {
    margin: 0;
    font-size: clamp(24px, 4vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero__title span {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 10px;
}

.hero__subtitle {
    margin: 0;
    max-width: 62ch;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--muted);
}

/* Butonlar her zaman yan yana */
.hero__actions {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
}

.hero__scroll span {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    animation: bounce 1.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-2px) rotate(45deg);
        opacity: .85;
    }

    50% {
        transform: translateY(3px) rotate(45deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero__video--desktop {
        display: none;
    }

    .hero__video--mobile {
        display: block;
    }

    /* Mobilde butonlar yine yan yana, küçük padding */
    .hero__actions .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__video {
        display: none !important;
    }

    .hero {
        background: url("/img/restaurant/hero-poster.jpg") center/cover no-repeat;
    }
}