@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #0b1e30;
    --navy-light: #1a3a5c;
    --gold: #c9a44e;
    --gold-light: #e8d5a0;
    --cream: #faf9f6;
    --text: #334155;
    --text-light: #94a3b8;
    --green: #059669;
    --white: #ffffff;
    --red: #ef4444;
    --orange: #f59e0b;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(160deg, rgba(11,30,48,0.85) 0%, rgba(26,58,92,0.75) 100%),
        url('/images/restoran-gece-isiklar.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(201,164,78,0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    width: clamp(150px, 30vw, 220px);
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    animation: heroFadeDown 1s ease-out;
    margin-bottom: 8px;
}

.hero-location {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 8px;
    animation: heroFadeDown 1s ease-out 0.15s both;
}

.hero-tagline {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: heroFadeDown 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: heroFadeDown 1s ease-out 0.45s both;
}

@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounceHint 2s ease-in-out infinite;
}

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

.hero-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,164,78,0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.hero-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ============================================
   SITE NAV (sticky)
   ============================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    transition: all 0.3s;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 51;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* LANG TOGGLE */
.lang-toggle {
    background: rgba(255,255,255,0.95);
    border: 1.5px solid var(--navy);
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.lang-toggle:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.lang-active { color: var(--navy); }
.lang-dim { color: #cbd5e1; }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.section-subheading {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 80px 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,164,78,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 2px;
}

.feature span {
    font-size: 13px;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ============================================
   HOURS
   ============================================ */
.hours-section {
    padding: 40px 0 60px;
}

.hours-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--navy);
    color: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.hours-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-reserve-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.hours-reserve-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   FEATURED / CHEF'S PICKS
   ============================================ */
.featured-section {
    padding: 60px 0 40px;
    background: var(--cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.featured-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.featured-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card-body {
    padding: 16px 18px;
}

.featured-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.featured-card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-card-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--green);
}

.featured-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-wrapper {
    padding: 80px 0 40px;
    background: var(--white);
}

/* CATEGORY NAV */
.cat-nav {
    position: sticky;
    top: 56px;
    z-index: 40;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 4px;
    padding: 8px 16px;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: inherit;
}

.cat-tab:hover {
    color: var(--navy);
    background: #f1f5f9;
}

.cat-tab.active {
    color: var(--navy);
    background: white;
    border-color: var(--navy);
}

/* MENU CONTAINER */
.menu-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 8px 16px 40px;
}

/* CATEGORY SECTION */
.menu-section {
    margin-top: 28px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    padding-bottom: 8px;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

/* MENU ITEM */
.menu-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ece4;
    transition: background 0.2s;
    animation: itemFadeIn 0.4s ease-out both;
}

@keyframes itemFadeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.menu-item:last-child { border-bottom: none; }

.menu-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1ede6;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-item-img:hover {
    transform: scale(1.05);
}

.menu-item-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4cfc4;
    cursor: default;
}

.menu-item-img.no-img:hover {
    transform: none;
}

.menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.menu-item-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 3px;
}

.menu-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.menu-item-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--green);
}

.menu-item-price.daily-price {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    background: rgba(245,158,11,0.1);
    padding: 3px 10px;
    border-radius: 12px;
}

.menu-item-price.per-unit {
    font-size: 14px;
}

.per-unit-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

/* BADGES */
.item-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.badge-popular {
    background: #fef3c7;
    color: #92400e;
}

.badge-chef {
    background: #ede9fe;
    color: #5b21b6;
}

.badge-new {
    background: #d1fae5;
    color: #065f46;
}

.badge-seasonal {
    background: #e0f2fe;
    color: #075985;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11,30,48,0);
    transition: background 0.3s;
}

.gallery-item:hover::after {
    background: rgba(11,30,48,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-wide img {
    height: 300px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,164,78,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text);
}

.contact-item a {
    color: var(--navy-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    padding: 8px 16px;
    background: var(--navy);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.contact-map iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand p {
    font-size: 13px;
    margin-top: 4px;
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 60;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 60;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(11,30,48,0.3);
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ============================================
   PHOTO MODAL
   ============================================ */
.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.photo-modal.show { display: flex; }

.photo-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    animation: modalZoomIn 0.3s ease-out;
}

@keyframes modalZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 0;
    color: var(--text-light);
    font-size: 14px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 15px;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 49;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 16px 24px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image { order: -1; }

    .about-image img {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-item-wide img {
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cat-nav {
        top: 52px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .menu-item-img { width: 110px; height: 110px; }
    .menu-container { padding: 8px 24px 60px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item-wide img {
        height: 220px;
    }

    .contact-socials {
        flex-wrap: wrap;
    }

    .hours-card {
        padding: 28px 20px;
    }

    .hero-scroll-hint {
        bottom: 100px;
    }
}
