:root {
    --efes-blue: #0047ab;
    --efes-blue-glow: rgba(0, 71, 171, 0.6);
    --accent-orange: #ff9900;
    --bg-black: #0a0a0a;
    --card-bg: #161616;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 86, 214, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 50, 150, 0.1) 0%, transparent 40%),
        linear-gradient(160deg, #04080f 0%, #080e1a 50%, #04080f 100%);
    background-attachment: fixed; 
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 40%, rgba(0, 123, 255, 0.07) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* HERO / KAPAK - kapakresmi arka planı */
header {
    position: relative;
    overflow: visible; /* Menünün dışarı taşabilmesi için ŞART */
    background: #000;
    width: 100%; /* Ekranı tam kaplaması için */
    min-height: 450px; /* Mobilde ve PC'de daha geniş ve ferah durması için */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,71,171,0.4)),
    url('/assets/kapakresmi.png') center center / cover no-repeat;
  opacity: 0.25; /* Daha silik ve profesyonel görünüm için düşürdük */
  z-index: 1;
  pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1100;
    width: 100%;
    padding: 80px 20px; /* Üst-alt boşluğu biraz artırdık */
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda tam ortalar */
    justify-content: center; /* Dikeyde tam ortalar */
    text-align: center; /* Yazıları kendi içinde ortalar */
}

.logo-text {
    font-size: 2.8em;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0 auto 10px auto;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--efes-blue-glow);
    animation: fadeInDown 1s ease;
}

.subtitle {
    font-size: 1em;
    color: #aaa;
    margin-top: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.slogan {
    font-size: 1em;
    color: var(--efes-blue);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    display: block;
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 8px var(--efes-blue-glow); }
    to { text-shadow: 0 0 18px var(--efes-blue); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- DİL SEÇİCİ (ESKİ STABİL HALİ) --- */
.lang-selector-container {
    margin-top: 25px;
    position: relative;
    display: inline-block;
    z-index: 10000;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.lang-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%); /* Bu kural her zaman burada kalsın que atlama yapmasın */
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10001;
    overflow: hidden;
}

.lang-dropdown.show {
    display: flex !important;
}

.lang-dropdown.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.2s;
    color: #ccc;
    text-align: left;
}

.lang-option:hover {
    background: var(--efes-blue);
    color: white;
}

.lang-option.active {
    color: var(--efes-blue);
    font-weight: bold;
}
/* ------------------------------ */

.nav-container {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #0a0a0a;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
    display: block;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.nav-container::-webkit-scrollbar { display: none; }

.nav-scroll-wrapper {
    display: flex;
    padding: 0 20px;
    gap: 10px;
    width: max-content;
    min-width: 100%;
}

.nav-item {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 25px;
    color: #eee;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-item:hover, .nav-item.active {
    background: var(--efes-blue);
    border-color: var(--efes-blue);
    box-shadow: 0 0 15px var(--efes-blue-glow);
    color: white;
    transform: translateY(-2px);
}

.container {
    width: 95%;
    max-width: 1100px;
    padding: 20px 0 60px 0;
}

.category-section {
    margin-top: 40px;
    scroll-margin-top: 80px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-title {
    color: #fff;
    text-align: left;
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 800;
    letter-spacing: 2px;
    border-left: 3px solid var(--efes-blue);
    padding-left: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.item-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.item-info h3 {
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    color: #f0f0f0;
    line-height: 1.4;
    word-wrap: break-word; /* Uzun kelimeleri böler */
}

.sub-name {
    font-size: 0.8em;
    color: #888;
    margin-top: 4px;
}

.price {
    font-weight: 700;
    font-size: 1.05em;
    color: #ffffff;
    white-space: nowrap;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.btn-action {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    letter-spacing: 2px;
}

.btn-action.primary {
    background: var(--efes-blue);
    border-color: var(--efes-blue);
    box-shadow: 0 8px 20px var(--efes-blue-glow);
}

.btn-action.primary:hover {
    background: #0056d6;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--efes-blue);
}

.btn-action:hover {
    background: #fff;
    color: #000;
}

.exchange-note {
    font-size: 0.7em;
    color: #444;
    margin-top: 40px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 50px 15px; /* Mobilde dikey boşluğu biraz azalttık que ferahlasın */
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .logo-text { 
        font-size: 2.1em; 
        letter-spacing: 3px; 
        text-align: center;
        width: 100%;
        display: block;
        margin: 0 auto 10px auto;
    }

    .subtitle { 
        font-size: 0.9em; 
        letter-spacing: 3px; 
        width: 100%; 
        text-align: center; 
        display: block;
        margin: 0 auto 5px auto;
    }

    .slogan { 
        font-size: 0.82em; 
        letter-spacing: 1.5px; 
        width: 100%; 
        text-align: center; 
        display: block;
        margin: 0 auto 15px auto;
        opacity: 0.9;
    }

    .header-actions {
        display: flex;
        flex-direction: row; 
        gap: 8px;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 30px 0;
    }

    .btn-action {
        padding: 12px 5px;
        font-size: 0.72em;
        flex: 1;
        text-align: center;
        white-space: nowrap;
        letter-spacing: 0;
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Çok dar ekranlar (iPhone SE, Small Androids) */
    @media (max-width: 370px) {
        .logo-text { font-size: 1.85em; }
        .header-actions {
            flex-direction: column;
            gap: 12px;
            padding: 0 20px;
        }
        .btn-action {
            width: 100%;
            max-width: 100%;
            font-size: 0.85em;
            padding: 14px 20px;
            letter-spacing: 1px;
        }
    }

    .item-info h3 {
        font-size: 0.88em;
    }
}
 /* Bu en alttaki parantez medya sorgusunu kapatır */

/* Hızlı Erişim Linkleri (Sitelinks için) */
.quick-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

/* Link görünümü */
.quick-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: color 0.22s ease, opacity 0.22s ease;
  opacity: 0.9;
  padding: 6px 8px;
  border-radius: 6px;
}

/* Hover efekti */
.quick-links li a:hover,
.quick-links li a:focus {
  color: #ffcc33; /* Efendy sarısı */
  background: rgba(255, 204, 51, 0.06);
  outline: none;
  opacity: 1;
}

/* Mobil: dar ekranlarda dikey yığılma */
@media (max-width: 480px) {
  .quick-links {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  .quick-links li a {
    font-size: 0.9rem;
    text-align: center;
    display: block;
  }
}