/* ==========================================================================
   MUSAFIR INDIAN - PREMIUM FRONTEND CSS STYLES
   Tasarım Konsepti: Minimalist Modern Lüks Hint Teması
   Renkler: Safran, Zerdeçal, Koyu Kakule ve Sıcak Altın Tonları
   ========================================================================== */

/* --- CSS Değişkenleri ve Tokenlar --- */
:root {
    --bg-primary: #0D0B08;           /* Derin Sıcak Siyah */
    --bg-secondary: #16110A;         /* Koyu Kahve/Baharat Rengi */
    --bg-card: #20170F;              /* Lüks Kart Arka Planı */
    --bg-card-hover: #291D13;        /* Kart Hover Arka Planı */
    --color-saffron: #E8912D;        /* Safran Turuncusu (Ana Vurgu) */
    --color-turmeric: #D4A853;       /* Zerdeçal Sarısı (Altın Vurgu) */
    --color-tandoori: #C8553D;       /* Tandır Kırmızısı (Acı Vurgusu) */
    --color-cardamom: #5A8C5A;       /* Kakule Yeşili (Vejetaryen Vurgusu) */
    --color-cream: #FFF8F0;          /* Sıcak Krem Beyaz */
    --color-text: #E8DDD0;           /* Birincil Metin */
    --color-text-secondary: #A89278; /* İkincil Metin */
    --color-text-muted: #746351;     /* Sönük Metin */
    --color-border: rgba(212, 168, 83, 0.12); /* Zerdeçal Opak Sınır */
    --color-border-hover: rgba(232, 145, 45, 0.35);
    
    /* Efektler ve Gölgeler */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(232, 145, 45, 0.15);
    --shadow-glow-strong: 0 0 35px rgba(232, 145, 45, 0.3);
    
    /* Yarıçap ve Geçişler */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 50%;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Yazı Tipleri */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --navbar-height: 110px;
}

/* ==========================================================================
   1. RESET & BASE (TEMEL KURAL SETLERİ)
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-saffron);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================================================
   2. TYPOGRAPHY (TİPOGRAFİ)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ==========================================================================
   3. LAYOUT UTILITIES (ESNEK YERLEŞİM BİRİMLERİ)
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   4. NAVBAR (NAVİGASYON BARI)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-slow);
    border-bottom: 1px solid transparent;
}

/* Scroll edildiğinde navbar */
.navbar.scrolled {
    background-color: rgba(22, 17, 10, 0.85);
    backdrop-filter: blur(15px);
    height: 90px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-cream);
    letter-spacing: 0.5px;
}

.navbar-brand span {
    color: var(--color-saffron);
    font-weight: 400;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand-logo {
    height: 130px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-saffron);
}

/* Kayan çizgi efekti */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-saffron);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobil Hamburger Menü Butonu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-cream);
    transition: var(--transition);
}

/* Hamburger Aktif Hali */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: var(--color-saffron);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: var(--color-saffron);
}

/* ==========================================================================
   5. BUTTONS (DÜĞMELER)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-saffron);
    color: var(--bg-primary);
    border: 1px solid var(--color-saffron);
}

.btn-primary:hover {
    background-color: var(--color-turmeric);
    border-color: var(--color-turmeric);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-turmeric);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-turmeric);
    color: var(--bg-primary);
    border-color: var(--color-turmeric);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   6. HERO SECTION (GİRİŞ PANORAMASI)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--navbar-height);
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(232, 145, 45, 0.06) 0%, transparent 65%),
                linear-gradient(135deg, #0A0805 0%, #150F09 60%, #1E150D 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(232, 145, 45, 0.08);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-turmeric);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--color-saffron);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Süslemeler - Mandala */
.hero-bg-ornaments {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.mandala-spinning {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--color-saffron);
    border-radius: var(--radius-full);
    position: relative;
    animation: rotate 80s linear infinite;
}

.mandala-spinning::before, .mandala-spinning::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-turmeric);
    border-radius: var(--radius-full);
}

.mandala-spinning::before {
    width: 80%;
    height: 80%;
    border-style: dotted;
}

.mandala-spinning::after {
    width: 60%;
    height: 60%;
    border-style: dashed;
}

.mandala-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--color-saffron);
    filter: blur(140px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 10;
}

.hero-scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-secondary);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-saffron);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.hero-scroll-indicator .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   7. SECTIONS & CARDS (BÖLÜMLER VE KARTLAR)
   ========================================================================== */
.section {
    padding: 110px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px auto;
}

.section-ornament {
    font-size: 1.8rem;
    color: var(--color-saffron);
    margin-bottom: 12px;
    text-align: center;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-cream);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-saffron);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* Kart Temelleri */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow);
}

/* Yemek Kartları (Menu Card) */
.menu-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-slow);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow);
}

/* Görsel içeren kartlar için */
.menu-card.has-image .card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card.has-image .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover.has-image .card-image-wrapper img {
    transform: scale(1.06);
}

.menu-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.badge-featured {
    background-color: rgba(212, 168, 83, 0.9);
    color: #000;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Görsel içermeyen minimalist menü kartı (Placeholder Yok!) */
.menu-card.no-image {
    background-color: #120E0A;
    border-left: 3px solid var(--color-saffron);
}

.menu-card.no-image:hover {
    background-color: #18130E;
    border-left-color: var(--color-turmeric);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Başlık ve Fiyat Satırı */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    width: 100%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.3;
}

.inline-badges {
    display: inline-flex;
    gap: 4px;
}

.badge-icon {
    font-size: 0.9rem;
    cursor: help;
}

.card-price {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-saffron);
    font-weight: 600;
    white-space: nowrap;
}

.card-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   8. ABOUT PREVIEW SECTION VISUALS (HAKKIMIZDA GÖRSEL YIĞINI)
   ========================================================================== */
.visual-stack {
    position: relative;
    height: 480px;
    width: 100%;
}

.visual-box {
    position: absolute;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.box-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    box-shadow: var(--shadow-md);
}

.box-2 {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-mandala {
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-full);
    position: relative;
    animation: rotate 60s linear infinite;
}

.visual-mandala::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px dotted rgba(232, 145, 45, 0.3);
    border-radius: var(--radius-full);
}

.visual-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-primary);
    border: 2px solid var(--color-saffron);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.visual-badge .number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-saffron);
    font-weight: 700;
}

.visual-badge .text {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   9. CTA BANNER (REZERVASYON / ÇAĞRI ŞERİDİ)
   ========================================================================== */
.cta-section {
    padding: 85px 0;
    background: linear-gradient(135deg, #1C1209 0%, #2D1B0B 50%, #1C1209 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(232, 145, 45, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2.4rem;
    color: var(--color-cream);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.cta-info-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-turmeric);
}

.cta-info-item i {
    color: var(--color-saffron);
}

/* ==========================================================================
   10. SUB PAGES COMMON (ALT SAYFALAR ORTAK STİLLERİ)
   ========================================================================== */
.page-header {
    padding: 160px 0 70px 0;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.page-header-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--color-cream);
    margin-bottom: 15px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--color-text-secondary);
}

.breadcrumb a:hover {
    color: var(--color-saffron);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Hakkımızda Özel: Mandala Sanatsal Motif Kompozisyonu */
.story-pattern-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-mandala-main {
    width: 280px;
    height: 280px;
    border: 3px double var(--color-saffron);
    border-radius: var(--radius-full);
    position: relative;
    animation: rotate 60s linear infinite;
}

.story-mandala-main::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 2px dashed var(--color-turmeric);
    border-radius: var(--radius-full);
}

.story-mandala-sub-1, .story-mandala-sub-2 {
    position: absolute;
    border: 1px dotted rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-full);
}

.story-mandala-sub-1 {
    width: 180px;
    height: 180px;
    top: 20px;
    left: 20px;
    animation: rotate 40s linear infinite reverse;
}

.story-mandala-sub-2 {
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 20px;
    animation: rotate 30s linear infinite;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(232, 145, 45, 0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-saffron);
    margin-bottom: 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--color-saffron);
    color: var(--bg-primary);
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-glow);
}

/* Şef Köşesi */
.chef-badge-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.chef-mandala {
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(232, 145, 45, 0.15);
    border-radius: var(--radius-full);
    animation: rotate 70s linear infinite;
}

.chef-silhouette {
    position: absolute;
    font-size: 6rem;
    color: var(--color-border);
    opacity: 0.35;
}

/* ==========================================================================
   11. MENU PAGE & FILTERS (MENÜ SAYFASI VE KATEGORİ SÜZME)
   ========================================================================== */
.menu-filters-container {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.menu-filters {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 12px 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-saffron);
}

/* Kayan alt çizgi efekti */
.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-saffron);
    transition: var(--transition);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 100%;
}

.menu-grid {
    transition: opacity 0.3s ease;
}

.menu-info-footer {
    margin-top: 80px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-info-footer .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.menu-info-footer .badge {
    flex-shrink: 0;
}

.menu-info-footer p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ==========================================================================
   12. CONTACT PAGE (İLETİŞİM SAYFASI FORMLARI)
   ========================================================================== */
.grid-contact {
    grid-template-columns: 4.5fr 7.5fr;
    gap: 60px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--color-border-hover);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(232, 145, 45, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-saffron);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px;
}

.form-panel-title {
    font-size: 1.8rem;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.form-panel-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-saffron);
    outline: none;
    box-shadow: 0 0 10px rgba(232, 145, 45, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* ==========================================================================
   13. FOOTER (SAYFA ALTBİLGİSİ)
   ========================================================================== */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 85px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--color-saffron);
    font-weight: 400;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background-color: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
}

.footer-social a:hover {
    color: var(--color-saffron);
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-saffron);
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.footer-contact-info li i {
    color: var(--color-saffron);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-bottom span {
    color: var(--color-turmeric);
}

/* ==========================================================================
   14. FLASH MESSAGES & MISC (BİLDİRİMLER)
   ========================================================================== */
.flash-message {
    position: relative;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-top: calc(var(--navbar-height) + 20px);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.flash-success {
    background-color: rgba(90, 140, 90, 0.1);
    border: 1px solid var(--color-cardamom);
    color: #a4cca4;
}

.flash-success i { color: var(--color-cardamom); }

.flash-error {
    background-color: rgba(200, 85, 61, 0.1);
    border: 1px solid var(--color-tandoori);
    color: #ff8f8f;
}

.flash-error i { color: var(--color-tandoori); }

.flash-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: inherit;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}

.flash-close:hover { opacity: 1; }

/* ==========================================================================
   15. ANIMATIONS & REVEAL (ANİMASYON KÜTÜPHANESİ)
   ========================================================================== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollWheel {
    0% { opacity: 0; top: 5px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 18px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   16. MEDIA QUERIES (RESPONSIVE KURALLAR)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 75px;
    }
    
    .grid-2, .grid-3, .grid-4, .grid-contact {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--bg-secondary);
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        transition: var(--transition-slow);
        border-bottom: 0 solid var(--color-border);
    }
    
    .nav-links.active {
        height: calc(100vh - var(--navbar-height));
        padding: 40px 0;
        border-bottom-width: 1px;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 168, 83, 0.05);
    }
    
    .nav-link::after { display: none; }
    
    /* Hero */
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .hero-bg-ornaments {
        width: 400px;
        height: 400px;
    }
    
    /* visual elements stack */
    .visual-stack {
        height: 350px;
    }
    .visual-badge {
        padding: 15px 20px;
    }
    
    /* Contact Page */
    .contact-form-panel {
        padding: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Menu Footer */
    .menu-info-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    .section-title {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   17. LANGUAGE SWITCHER (DİL SEÇİCİ STİLLERİ)
   ========================================================================== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(232, 145, 45, 0.05);
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.lang-switcher span {
    color: var(--color-text-muted);
}

.lang-btn {
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-secondary);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-saffron);
}

@media (max-width: 768px) {
    .lang-switch-item {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 15px;
    }
    .lang-switcher {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   18. CONTACT & RESERVATION TABS (FORM SEKMELERİ STİLLERİ)
   ========================================================================== */
.form-tabs-container {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 25px;
    gap: 15px;
}

.form-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-tab-btn i {
    font-size: 1.05rem;
}

.form-tab-btn:hover,
.form-tab-btn.active {
    color: var(--color-saffron);
}

.form-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-saffron);
    transition: var(--transition);
}

.form-tab-btn.active::after {
    width: 100%;
}

.form-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-tab-content.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   GOOGLE / MÜŞTERİ YORUMLARI BÖLÜMÜ
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-secondary);
    position: relative;
}

/* Genel puan özeti (başlık altında) */
.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 14px 26px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews-avg-score {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-saffron);
}

.reviews-summary-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.reviews-summary-stars .stars {
    color: var(--color-turmeric);
    font-size: 1rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* Yorum kartları */
.reviews-grid {
    margin-top: 50px;
}

.review-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--color-saffron), var(--color-turmeric));
}

.review-author-meta {
    flex: 1;
    min-width: 0;
}

.review-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cream);
    margin: 0;
}

.review-time {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.review-google-icon {
    font-size: 1.1rem;
    color: #4285F4;
    flex-shrink: 0;
}

.review-stars {
    color: var(--color-turmeric);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
}

@media (max-width: 600px) {
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .reviews-summary-stars {
        align-items: center;
    }
}

/* ==========================================================================
   ÇOKLU DİL: FONTLAR (AR/HI) ve RTL (SAĞDAN-SOLA) DESTEĞİ
   ========================================================================== */

/* Dile özgü font override'ları — değişkenleri ezerek tüm siteye yansır */
html[lang="ar"] {
    --font-heading: 'Noto Kufi Arabic', 'Playfair Display', serif;
    --font-body: 'Noto Naskh Arabic', 'Inter', sans-serif;
}
html[lang="hi"] {
    --font-heading: 'Noto Serif Devanagari', 'Playfair Display', serif;
    --font-body: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* --- RTL (Arapça) Düzenlemeleri --- */
html[dir="rtl"] body {
    text-align: right;
}

/* Inline "text-align: left" ile sola dayalı bölümleri sağa çevir */
html[dir="rtl"] [style*="text-align: left"] {
    text-align: right !important;
}
html[dir="rtl"] .section-ornament[style*="margin-left: 0"] {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Şef alıntısının sol kenarlığını sağa al */
html[dir="rtl"] .chef-content blockquote {
    border-left: none !important;
    border-right: 3px solid var(--color-saffron) !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

/* Yön belirten ikonları (chevron / ok) RTL'de aynala */
html[dir="rtl"] .breadcrumb .fa-chevron-right,
html[dir="rtl"] .footer-links .fa-chevron-right,
html[dir="rtl"] .back-navigation .fa-arrow-left {
    transform: scaleX(-1);
}

/* Yorum kartı: Google ikonu ve yıldızlar zaten flex; yön otomatik döner.
   Buton içi ok ikonlarının boşluğunu mantıksal tarafa al */
html[dir="rtl"] .btn i[style*="margin-left"] {
    margin-left: 0 !important;
    margin-right: 8px;
}
html[dir="rtl"] .back-navigation .fa-arrow-left[style*="margin-right"] {
    margin-right: 0 !important;
    margin-left: 8px;
}

/* Form alanları RTL'de sağdan başlasın */
html[dir="rtl"] .form-control {
    text-align: right;
}

/* ==========================================================================
   AÇIK (LIGHT) TEMA — data-theme="light" ile etkinleşir
   Vurgu renkleri (safran/tandır) korunur; zemin, metin ve gölgeler değişir.
   --color-cream açık temada "parlak metin" olduğu için koyu espresso olur.
   ========================================================================== */
html[data-theme="light"] {
    --bg-primary: #FFFCF7;
    --bg-secondary: #F6EDE0;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FBF2E6;
    --color-turmeric: #B07D12;
    --color-cream: #281A10;
    --color-text: #2E2218;
    --color-text-secondary: #6E5C46;
    --color-text-muted: #9C8A74;
    --color-border: rgba(170, 120, 40, 0.20);
    --color-border-hover: rgba(200, 110, 30, 0.45);
    --shadow-sm: 0 4px 12px rgba(120, 90, 40, 0.10);
    --shadow-md: 0 8px 24px rgba(120, 90, 40, 0.14);
    --shadow-lg: 0 16px 48px rgba(120, 90, 40, 0.18);
    --shadow-glow: 0 0 25px rgba(232, 145, 45, 0.12);
    --shadow-glow-strong: 0 0 35px rgba(232, 145, 45, 0.22);
}

/* Sabit koyu renklerin açık tema karşılıkları */
html[data-theme="light"] body { background-color: var(--bg-primary); color: var(--color-text); }
html[data-theme="light"] .navbar.scrolled { background-color: rgba(255, 252, 247, 0.88); }
html[data-theme="light"] .form-control { background-color: rgba(0, 0, 0, 0.04); }
html[data-theme="light"] select.form-control { background-color: #fff !important; color: var(--color-text) !important; }

/* Tema değiştirme butonu */
.theme-switch-item { display: flex; align-items: center; }
.theme-toggle {
    cursor: pointer;
    background-color: rgba(232, 145, 45, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-saffron);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}
.theme-toggle:hover {
    border-color: var(--color-border-hover);
    background-color: rgba(232, 145, 45, 0.12);
    transform: rotate(-15deg);
}
@media (max-width: 768px) {
    .theme-switch-item { width: 100%; justify-content: center; padding-top: 10px; }
}

/* Açık temada sabit koyu zeminlerin karşılıkları */
html[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #FBEFD9 0%, #F4DFBE 50%, #FBEFD9 100%);
}
html[data-theme="light"] .menu-card.no-image { background-color: #FFFFFF; }
html[data-theme="light"] .menu-card.no-image:hover { background-color: #FBF2E6; }

/* Açık tema Hero bölümü okunabilirlik düzeltmeleri */
html[data-theme="light"] .hero {
    background: radial-gradient(circle at center, rgba(232, 145, 45, 0.08) 0%, transparent 65%),
                linear-gradient(135deg, #FFF8F0 0%, #F6EDE0 60%, #F0E4D0 100%);
}
html[data-theme="light"] .hero-title {
    color: var(--color-cream);
}
html[data-theme="light"] .hero-title span {
    color: var(--color-saffron);
}
html[data-theme="light"] .hero-subtitle {
    color: var(--color-text-secondary);
}
html[data-theme="light"] .hero-badge {
    background-color: rgba(232, 145, 45, 0.12);
    color: #B07D12;
}
html[data-theme="light"] .page-header {
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
