/* --- ODD JET BLACK & CREAM THEME (FINAL VERSION) --- */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0E0E10; /* RAL 9005 - Siyah */
    color: #FDF4E3;            /* RAL 9001 - Krem */
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

header {
    text-align: center;
    padding: 30px 20px 10px;
    background-color: #0E0E10; 
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

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

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

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

.nav-btn.active {
    background: #FDF4E3;
    color: #0E0E10;
    border-color: #FDF4E3;
    font-weight: 700;
    transform: scale(1.05);
}

#menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 60vh;
}

h2 {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin: 25px 0 10px;
    color: #FDF4E3;
    display: block;
    border-bottom: 1px solid rgba(253, 244, 227, 0.1);
    padding-bottom: 15px;
}

.category-desc {
    text-align: center;
    color: #BEB9AD;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 35px;
    padding: 0 20px;
    opacity: 0.8;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(253, 244, 227, 0.08);
}

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

.item-name {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #FDF4E3;
}

.item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FDF4E3;
    min-width: 60px;
    text-align: right;
}

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

/* YENİ EKLENEN SOSYAL MEDYA BUTONLARI */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 20px 10px;
    margin-top: 30px;
}

.contact-btn {
    background-color: #FDF4E3; /* KREM RENGİ ZEMİN */
    color: #0E0E10;            /* SİYAH YAZI */
    text-decoration: none;     /* Altı çizili olmasın */
    padding: 12px 20px;
    border-radius: 8px;        /* Hafif köşeli */
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #FDF4E3;
    transition: transform 0.2s;
    width: 45%;               /* Mobilde yan yana sığsınlar */
    text-align: center;
}

/* Tıklayınca hafifçe küçülsün (Dokunma hissi) */
.contact-btn:active {
    transform: scale(0.96);
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 30px 20px 50px; /* Alttan biraz boşluk */
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .logo-img { max-width: 160px; }
    .scroll-menu { justify-content: flex-start; padding-left: 20px; }
    .item-name { font-size: 1rem; }
    .item-detail { font-size: 0.85rem; }
}