/* --- ODD PREMIUM NAVY & GOLD THEME (ELEGANT/SMALL FONT + INLINE LOGO) --- */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #001f3d; /* LACİVERT */
    color: #fdfbf7;            /* KREM */
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

header {
    text-align: center;
    padding: 20px 20px 10px;
    background-color: #001f3d;
    position: relative;
}

/* --- DİL BUTONLARI --- */
.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #aab8c2;
    z-index: 200;
}

.lang-btn {
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.lang-btn.active {
    color: #d4af37; /* ALTIN */
    text-decoration: underline;
}

.divider { margin: 0 2px; opacity: 0.5; }

/* LOGO */
.logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 8px auto;
}

.subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #aab8c2;
    text-transform: uppercase;
    font-weight: 500;
}

/* MENÜ BUTONLARI */
.scroll-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 15px;
    background: #001f3d;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    gap: 10px;
}
.scroll-menu::-webkit-scrollbar { display: none; }

.nav-btn {
    border: 1px solid rgba(253, 251, 247, 0.2);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aab8c2;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn.active {
    background: #fdfbf7;
    color: #001f3d;
    border-color: #fdfbf7;
    font-weight: 700;
    transform: scale(1.02);
}

/* İÇERİK */
#menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    min-height: 50vh;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 20px 0 10px;
    color: #fdfbf7;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.category-desc {
    text-align: center;
    color: #aab8c2;
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.9;
}

.menu-item {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.item-name {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #fdfbf7;
    display: flex; /* Logo ile yazıyı aynı hizada tutar */
    align-items: center;
}

/* --- İŞTE MİNİ LOGO AYARI BURADA --- */
.item-inline-logo {
    height: 1.2em; /* Yazının boyutu kadar yüksekliği olur */
    margin-left: 8px; /* Yazıdan biraz uzaklaşır */
    vertical-align: middle;
}

.item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #d4af37; /* ALTIN */
    min-width: 60px;
    text-align: right;
}

.item-detail {
    font-size: 0.8rem;
    color: #b0c4de;
    font-weight: 300;
    line-height: 1.4;
}

/* --- AKSİYON BUTONLARI --- */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    margin-top: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #d4af37;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #d4af37;
    transition: all 0.3s;
    width: 45%;
}

.btn-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.contact-btn:hover, .contact-btn:active {
    background-color: #d4af37;
    color: #001f3d;
}

footer {
    text-align: center;
    padding: 20px 20px 40px;
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .logo-img { max-width: 140px; }
    .scroll-menu { justify-content: flex-start; padding-left: 20px; }
}/* --- ÜRÜN FOTOĞRAFLARI İÇİN --- */
.item-photo {
    width: 100%;
    max-width: 350px; /* Telefonda ekrana tam oturur, PC'de çok büyümez */
    border-radius: 12px; /* Yumuşak köşeler */
    margin-top: 12px;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Hafif altın rengi çerçeve */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}