body {
    /*background: linear-gradient(135deg, #f0fdff 0%, #e0f8fa 100%);*/
    min-height: 100vh;
}

/* Slider ve overlay div ayarları */
.slider-container {
    width: 100%;
}

.carousel-inner img {
    height: 600px;
    /* Masaüstü için daha yüksek değer */
    object-fit: cover;
    /* Görüntü oranını korur */
}

/* Tablet cihazlar için orta yükseklik */
@media (max-width: 1024px) {
    .carousel-inner img {
        height: 500px;
    }
}

/* Mobil cihazlar için daha küçük bir yükseklik */
@media (max-width: 768px) {
    .carousel-inner img {
        height: 350px;
        /* Mobil cihazlarda daha küçük yükseklik */
    }
}

/* Büyük masaüstü ekranlar için */
@media (min-width: 1200px) {
    .carousel-inner img {
        height: 923px;
        /* Büyük ekranlar için daha yüksek */
    }
}


.overlay-div {
    position: relative;
    margin-top: -20px;
    /* Sliderın 50px üstüne binsin */
    width: 95%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 255, 0.95));
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 206, 209, 0.2);
    backdrop-filter: blur(10px);
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(100%);
    color: #fff !important;
}

.accordion-button.collapsed::after {
    filter: invert(100%);
    color: #fff;
}

.accordion-button:not(.collapsed)::before {
    color: #fff;
    /* Replace 'blue' with your desired color */
}

.img-fluid {
    background-size: cover;
}

.accordion-button {
    position: relative;
    border: none;
    /* Kenarlıkları kaldır */
    height: 150px;
    /* Butonun yüksekliğini ayarlayın */
    overflow: hidden;
    /* Taşmayı engelle */
}

.accordion-item {
    border: none;
    /* Kenarlıkları kaldır */
}

.toast {
    color: green;
}

@media (max-width: 991.98px) {
    .navbar.d-lg-none .container-fluid .d-flex {
        justify-content: space-between;
        /* Sol ve sağ arasında boşluk bırak */
    }

    .navbar.d-lg-none .container-fluid .d-flex .navbar-brand {
        order: 1;
        /* Logo sola kayar */
    }

    .navbar.d-lg-none .container-fluid .d-flex .dropdown {
        order: 2;
        /* Dil seçimi sağa kayar */
    }
}

/* Masa butonları için temel stil */
.table-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    /* Butonun yüksekliği */
    border: none;
    /* Kenarlık kaldırıldı */
    border-radius: 5px;
    /* Buton köşeleri yuvarlatıldı */
    overflow: hidden;
    /* Resmin dışarı taşmasını engelle */
    background-image: url('../images/masa.jpg');
    /* Resim yolu buraya eklenmeli */
    background-size: cover;
    /* Resmi butonun boyutlarına uydur */
    background-position: center;
    /* Resmi ortala */
    cursor: pointer;
    /* Buton üzerine gelindiğinde fareyi pointer yap */
    transition: background-color 0.3s;
    /* Geçiş efekti */
    margin: 10px;
    /* Butonlar arasına 10px boşluk ekler */
    width: 100%;
    /* Esnek genişlik */
}

/* Masa numarasını yuvarlak yapmak için */
.table-number {
    display: inline-block;
    width: 30px;
    /* Yuvarlağın genişliği */
    height: 30px;
    /* Yuvarlağın yüksekliği */
    line-height: 30px;
    /* İçeriği dikeyde ortalamak için */
    text-align: center;
    /* İçeriği yatayda ortalamak için */
    border-radius: 50%;
    /* Tam yuvarlak yapmak için */
    background-color: rgba(255, 255, 255, 0.7);
    /* Masa numarasının arka plan rengi */
    font-weight: bold;
    /* Numaranın kalın yazılması */
    font-size: 14px;
    /* Yazı boyutu */
    color: #333;
    /* Varsayılan yazı rengi */
    transition: color 0.3s, background-color 0.3s;
    /* Renk değişimini animasyonla yap */
}

/* Seçilen masa numarasının rengi */
.table-button.selected .table-number {
    color: white;
    /* Seçilen masa numarasının yazı rengi beyaz */
    background-color: #007bff;
    /* Seçilen masa numarasının arka plan rengi */
}

/* Masa butonlarının düzenlenmesi için flex container */
.table-container {
    display: flex;
    flex-wrap: wrap;
    /* Butonları alt satırlara sarmak için */
    justify-content: space-between;
    /* Aralarda eşit boşluk bırakır */
    gap: 10px;
    /* Butonlar arasındaki boşluk */
}

/* Küçük ekranlar için buton düzeni */
@media (max-width: 768px) {
    .table-button {
        width: 48%;
        /* Butonlar, küçük ekranlarda %50 genişliğe sahip olacak */
        margin: 0 5px;
        /* Küçük ekranlarda butonlar arasına daha küçük bir boşluk ekledik */
    }
}

/* Daha küçük ekranlar için butonların boyutunu ayarlamak */
@media (max-width: 480px) {
    .table-button {
        width: 100%;
        /* Butonlar tam genişlikte olacak */
        margin: 0 5px;
        /* Butonlar arasına daha büyük bir boşluk ekleyerek alt alta sıralanmasını sağladık */
    }
}

/* Butona tıklanıldığında stil değişikliği */
.table-button.selected {
    background-color: rgba(0, 0, 255, 0.5);
    /* Seçili butona mavi arka plan rengi */
}

/* Hover durumunda masa numarasını değiştirme */
.table-button:hover .table-number {
    color: #fff;
    background-color: #007bff;
    /* Daha koyu siyah arka plan */
    transition: all 0.2s ease-in-out;
    /* Yumuşak geçiş efekti */
}

/* Seçili masa */
.table-button.active .table-number {
    background-color: #28a745;
    /* Yeşil arka plan */
    color: white;
    /* Yazıyı beyaz yap */
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.8);
    /* Parlayan efekt */
}

.gallery-title {
    font-size: 36px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
    position: relative;
    /* After pseudo-element için position gerekli */
}

.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}

.filter-button {
    font-size: 18px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
    padding: 10px 20px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.filter-button.active {
    color: #fff;
    background-color: #6c757d;
}

.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 20px;
}

.table-num {
    display: inline-block;
    width: 40px;
    /* Yuvarlağın genişliği */
    height: 40px;
    /* Yuvarlağın yüksekliği */
    line-height: 40px;
    /* İçerik ortalama */
    text-align: center;
    /* İçeriği yatayda ortala */
    border-radius: 50%;
    /* Tam yuvarlak yapmak için */
    background-color: #f8f9fa;
    /* Arka plan rengi */
    font-weight: bold;
    /* Numaranın kalın yazılması */
    font-size: 14px;
    /* Yazı boyutu */
}


#phone-number {
    direction: ltr;
    unicode-bidi: plaintext;
}

/* Tam turkuaz renkleriyle şık kart tasarımı */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 255, 0.9));
    border: 1px solid rgba(0, 206, 209, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.1), transparent);
    transition: left 0.6s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.25), 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 206, 209, 0.5);
}

.card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Yemek fiyatları için turkuaz vurgu */
.card .h6:last-child {
    color: #00ced1;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 206, 209, 0.3);
}

/* Yemek isimleri için stil */
.food-item-text {
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card:hover .food-item-text {
    color: #00bcd4;
}

/* Yemek açıklamaları */
.food-description {
    color: #7f8c8d;
    font-size: 13px;
    line-height: 1.4;
}

/* Yemek resimleri için turkuaz çerçeve - daha belirgin */
.card img.rounded-circle,
.card img.rounded-circle.border {
    border: 4px solid #00ced1 !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
}

.card:hover img.rounded-circle,
.card:hover img.rounded-circle.border {
    border-color: #00ced1 !important;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.5);
    transform: scale(1.05);
}

/* Tüm yemek resimlerinin turkuaz çerçevesi için ekstra güçlendirme */
img.rounded-circle.border {
    border-color: #00ced1 !important;
    border-width: 4px !important;
}

/* Accordion butonları için tam turkuaz efektler */
.accordion-button {
    border-radius: 15px;
    margin-bottom: 2.5px;
    border: 2px solid rgba(0, 206, 209, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Accordion item'lar (kategoriler) arasındaki boşluğu yarıya indir */
.accordion-item {
    margin-bottom: 7.5px !important;
}

/* Son yemek kartı ile kategori arasındaki boşluğu yarıya indir */
.accordion-collapse .row .col-lg-12:last-child {
    margin-bottom: 7px;
}

/* Accordion ok işaretini geri getir - beyaz renk */
.accordion-button::after {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-size: 1.25rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease-in-out !important;
    display: block !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    filter: brightness(0) invert(1) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: translateY(-50%) rotate(180deg) !important;
    filter: brightness(0) invert(1) !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.15), rgba(0, 188, 212, 0.15));
    border-color: #00ced1;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.25);
}

.accordion-button:hover {
    border-color: rgba(0, 206, 209, 0.6);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.2);
}

/* Accordion başlıkları için daha iyi görünürlük */
.accordion-button h1 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

/* Navbar için tam turkuaz vurgular */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 255, 0.95)) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 206, 209, 0.2);
    box-shadow: 0 2px 20px rgba(0, 206, 209, 0.15);
}

/* Masa butonları için tam turkuaz güncellemeler */
.table-button.selected .table-number {
    background-color: #00ced1;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.5);
}

.table-button:hover .table-number {
    background-color: #00ced1;
}

.table-button.active .table-number {
    background-color: #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.6);
}

/* Filter butonları için tam turkuaz stil */
.filter-button.active {
    background: linear-gradient(135deg, #00ced1, #00bcd4);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

/* Gallery title için tam turkuaz vurgu */
.gallery-title:after {
    border-bottom-color: #00ced1;
    box-shadow: 0 1px 5px rgba(0, 206, 209, 0.3);
}

/* Genel link stilleri */
a.text-decoration-none:hover {
    text-decoration: none !important;
}

/* Carousel kontrolleri için tam turkuaz vurgular */
.carousel-control-prev,
.carousel-control-next {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.8), rgba(0, 188, 212, 0.8));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin:10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, #00ced1, #00bcd4);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Responsive tasarım iyileştirmeleri */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }

    .card-body {
        padding: 15px;
    }

    .overlay-div {
        width: 98%;
        padding: 10px;
    }
}

/* Animasyonlar için keyframes - tam turkuaz */
@keyframes turkuazGlow {
    0% {
        box-shadow: 0 0 5px rgba(0, 206, 209, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 206, 209, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 206, 209, 0.2);
    }
}

.card:hover {
    animation: turkuazGlow 2s infinite;
}

/* Kategori resimlerinin tüm ekran boyutlarında tam alana oturması - net ve oval köşeli */
.accordion-button {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    display: block;
    border-radius: 15px !important;
    overflow: hidden;
    /* Resim netliği için */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

/* Accordion collapse içeriği için padding düzenlemeleri */
.accordion-collapse .accordion-body {
    padding: 0;
}

/* Yemek kartlarının genişliğini kategori resmi ile tam aynı yap - 2px azalt */
.accordion-collapse .row {
    margin: 0 !important;
    padding: 0 2px !important;
}

.accordion-collapse .row .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* TÜM ÇÖZÜNÜRLÜKLERDE EŞİT BOŞLUK - 10px */
/* Kategori ile ilk yemek kartı arasındaki boşluk */
.accordion-collapse .row .col-lg-12:first-child {
    margin-top: 10px !important;
}

/* Yemek kartları arasındaki boşluk */
.accordion-collapse .row .col-lg-12 {
    margin-bottom: 0px !important;
}

/* Son yemek kartı ile kategori arasındaki boşluk */
.accordion-collapse .row .col-lg-12:last-child {
    margin-bottom: 0px !important;
}

/* Kategoriler arasındaki boşluk */
.accordion-item {
    margin-bottom: 10px !important;
}

/* Accordion butonları için responsive yükseklikler */
@media (max-width: 768px) {
    .accordion-button {
        height: 120px !important;
        min-height: 120px !important;
        border-radius: 15px !important;
    }
}

@media (max-width: 991px) {
    .accordion-button {
        height: 100px !important;
        min-height: 100px !important;
        border-radius: 15px !important;
    }
}

@media (max-width: 480px) {
    .accordion-button {
        height: 80px !important;
        min-height: 80px !important;
        border-radius: 15px !important;
    }
}

/* Foote
r tasarımı - turkuaz tema ile uyumlu */
.footer {
    background: linear-gradient(135deg, rgba(240, 253, 255, 0.95), rgba(224, 248, 250, 0.95)) !important;
    /* border-top: 2px solid rgba(0, 206, 209, 0.2); */
    box-shadow: 0 -5px 20px rgba(0, 206, 209, 0.1);
    /*margin-top: 50px; */
    padding: 40px 0 5px 0;
}

/* Footer başlıkları */
.footer-heading {
    color: #000000 !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00ced1, #00bcd4);
    border-radius: 2px;
}

/* Footer metinleri */
.footer p,
.footer address,
.footer a {
    color: #2c3e50 !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00ced1 !important;
    text-decoration: none;
}

/* Footer ikonları */
.footer i {
    color: #00ced1;
    margin-right: 0px;
    transition: color 0.3s ease;
}

.footer a:hover i {
    color: #00bcd4;
}

/* Sosyal medya butonları */
.footer .btn-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 255, 0.9));
    border: 2px solid rgba(0, 206, 209, 0.2);
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .btn-light:hover {
    background: linear-gradient(135deg, #00ced1, #00bcd4);
    border-color: #00ced1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.footer .btn-light:hover i {
    color: white !important;
}

/* Instagram butonu özel renk */
.footer .text-danger {
    color: #E4405F !important;
}

.footer .btn-light:hover .text-danger {
    color: white !important;
}

/* Copyright bölümü */
.footer hr {
    border-color: rgba(0, 206, 209, 0.3);
    /* margin: 30px 0 15px 0; */
}

.footer .text-center p {
    color: #2c3e50 !important;
    font-weight: 500;
    margin: 0;
}

/* Footer responsive tasarım */
@media (max-width: 768px) {
    .footer {
        /*padding: 0px 0 15px 0;*/
        text-align: center !important;
    }

    .footer .text-sm-start {
        text-align: center !important;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .btn-light {
        margin: 5px;
    }
}

/* Footer animasyonları */
.footer .information,
.footer .resources,
.footer .social,
.footer .contact {
    transition: transform 0.3s ease;
}

.footer .information:hover,
.footer .resources:hover,
.footer .social:hover,
.footer .contact:hover {
    transform: translateY(-5px);
}

/* Footer bağlantıları için özel efektler */
.footer a[href^="tel:"],
.footer a[href^="mailto:"] {
    position: relative;
    overflow: hidden;
}

.footer a[href^="tel:"]:hover,
.footer a[href^="mailto:"]:hover {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 188, 212, 0.1));
    padding: 5px 10px;
    border-radius: 8px;
    margin: -5px -10px;
}

.circle-price {
      width: 50px;
      height: 50px;
      background-color: #00ced1; /* Turkuaz */
      color: white !important;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: bold;
    }

            .language-buttons {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: linear-gradient(135deg, rgba(0, 206, 209, 0.95), rgba(0, 188, 212, 0.95));
            border-radius: 15px;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 32px rgba(0, 206, 209, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 206, 209, 0.2);
        }

        .language-btn {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 8px 12px;
            margin: 0;
            border-radius: 10px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 30px;
            height: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .language-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .language-btn:hover::before {
            left: 100%;
        }

        .language-btn.active {
            background: linear-gradient(135deg, #00ced1, #00bcd4);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 206, 209, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 2px solid #00ced1;
        }

        .language-btn:hover {
            background: linear-gradient(135deg, rgba(0, 206, 209, 0.8), rgba(0, 188, 212, 0.8));
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
            border: 2px solid rgba(0, 206, 209, 0.6);
        }

        .flag-icon {
            width: 24px;
            height: 18px;
            border-radius: 2px;
        }

        .food-description {
            font-size: 14px;
            color: #666;
            /*font-style: italic;*/
        }

        /* Navbar dil butonları için özel stil */
        .navbar .language-buttons {
            position: static;
            background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 188, 212, 0.1));
            padding: 6px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 206, 209, 0.1);
            border: 1px solid rgba(0, 206, 209, 0.2);
        }

        .navbar .language-btn {
            background: rgba(0, 206, 209, 0.1);
            border: 2px solid rgba(0, 206, 209, 0.3);
            color: #00ced1;
            margin: 0 3px;
            min-width: 30px;
            width: 30px;
            height: 25px;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .navbar .language-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.2), transparent);
            transition: left 0.4s;
        }

        .navbar .language-btn:hover::before {
            left: 100%;
        }

        .navbar .language-btn.active {
            background: linear-gradient(135deg, #00ced1, #00bcd4);
            color: #fff;
            border-color: #00ced1;
            transform: none;
            box-shadow: 0 0 15px rgba(0, 206, 209, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .navbar .language-btn:hover {
            background: linear-gradient(135deg, rgba(0, 206, 209, 0.8), rgba(0, 188, 212, 0.8));
            color: #fff;
            border-color: #00ced1;
            transform: none;
            box-shadow: 0 3px 10px rgba(0, 206, 209, 0.3);
        }

        .navbar .flag-icon {
            width: 20px;
            height: 15px;
        }

        /* Accordion button sabit boyut ve arkaplan ayarları */
        .accordion-button {
            height: 120px !important;
            min-height: 120px !important;
            background-size: cover !important;
            background-position: center center !important;
            background-repeat: no-repeat !important;
            position: relative;
        }

        /* Yazı okunabilirliği için overlay */
        .accordion-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .accordion-button h1 {
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

            .food-description {
                font-size: 0.9rem;
                color: #6c757d;
                /*font-style: italic;*/
            }

            .language-btn {
                background-color: transparent;
                border: 2px solid #fff;
                color: #fff;
                padding: 8px 16px;
                margin: 0 5px;
                border-radius: 5px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .language-btn:hover,
            .language-btn.active {
                background-color: #fff;
                color: #000;
            }

            .language-switcher {
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1000;
            }

            /* Food item spacing fix for all directions */
            .food-item-text {
                margin-left: 1rem;
                margin-right: 1rem;
            }