/* ===================== Genel Ayarlar ===================== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;      /* Beyaz zemin */
    color: #383e42;               /* Yazılar antrasit */
}

/* ===================== Menü Kısmı ===================== */
#menu {
    padding: 20px 0;
}

.menu-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.menu-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.category-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item {
    margin: 10px 0;
    width: 80%;
    transition: box-shadow 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-content h9 {
    font-size: 20px;
    font-weight: bold;
    color: #383e42;             /* Antrasit */
    font-family: 'Barlow', sans-serif;
}

.menu-content span {
    font-size: 18px;
    font-weight: 800;
    color: #383e42;             /* Antrasit */
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
}

.menu-ingredients {
    font-style: italic;
    font-size: 14px;
    color: #383e42;             /* Antrasit */
}

/* ===================== Başlık Stili ===================== */
h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 10px;
    color: #383e42;             /* Antrasit */
    text-align: center;
    margin: 20px 0;
}

/* ===================== Filtreler ===================== */
#menu-flters {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

#menu-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #383e42;             /* Antrasit */
    margin: 0 3px 10px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: 2px solid #383e42;  /* Antrasit */
    border-radius: 50px;
}

#menu-flters li:hover,
#menu-flters li.filter-active {
    color: #fff;
    background: #383e42;        /* Antrasit */
}

/* ===================== Footer ===================== */
#footer {
    background: #383e42;        /* Antrasit */
    color: #fff;
    text-align: center;
    padding: 2px 0;             /* Daha ince padding */
    line-height: 1.2;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#footer .container {
    padding: 0;                 /* Container boşluğunu kaldır */
}

#footer h3 {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

#footer .copyright,
#footer .credits {
    margin: 0;
    font-size: 10px;
    line-height: 1;
}

#footer .footer-logo {
    display: block;
    margin: 5px auto 2px;       /* Üstten 5px, alttan 2px boşluk */
    max-width: 40px;
    height: auto;
}

/* ===================== Responsive Ayarlar ===================== */
@media (max-width: 768px) {
    .menu-item {
        width: 90%;
    }
    .menu-content h9 {
        font-size: 18px;
    }
    .menu-content span {
        font-size: 18px;
    }
}
