:root {
    /* Orijinal siteden alınan font değişkenleri */
    --ui-font-set: BlinkMacSystemFont,-apple-system,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Arial",sans-serif;
    --primary-font-set: 'Lora',serif;
    --secondary-font-set: 'Lora',serif;
    
    /* Menü başlıkları için değişkenler */
    --dm-menusection-fontfamily: var(--primary-font-set);
    --dm-menusection-fontsize: 1.7rem;
    --dm-menusection-fontweight: 600;
    --dm-menusection-tracking: -0.013rem;
    --dm-menusection-texttransform: uppercase;
    --dm-menusection-color: #fff;
    
    /* Renk değişkenleri */
    --dm-bgcolor: #7d6d4c;
    --dm-color: #ffffff;
    --dm-sidebar-bg: #5b4c37;
    --dm-modalheader-bgcolor: #422006;
    --dm-modalheader-color: #ffffff;
    --dm-modalheader-link-color: #fef3c7;
    --dm-modal-btn-bgcolor: #ffedd5;
    --dm-modal-btn-color: #5b4c37;
    --dm-link-color: #3498db;
    --dm-bg-gradient: #1c3d26;
    --dm-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 8px rgba(0, 0, 0, 0.9);
    --dm-sticky-header-color: rgba(65,40,0,.6);
    --dm-shadowglass: rgba(0,0,0,0.3);
    --dm-heading1-color: #ffffff;
    --dm-heading2-color: #94e9ff;
    --dm-btnorder-bgcolor: #1a3c24;
    --dm-btnorder-color: #fff190;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--primary-font-set);
    background-color: var(--dm-bgcolor);
    color: var(--dm-color);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Sticky Header - Tasarım güncellendi */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(70, 40, 15, 0.7); /* Opaklık azaltıldı */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-header.nav-hidden {
    transform: translateY(-100%);
}

.sticky-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem; /* Yatay padding artırıldı */
    max-width: 1500px; /* Genişlik artırıldı */
    margin: 0 auto;
}

.sticky-header__content__side {
    display: flex;
    align-items: center;
}

.sticky-header__content__side:first-child {
    margin-right: auto; /* Sola yasla */
    padding-left: 0.1rem; /* Sol boşluk azaltıldı */
}

.sticky-header__content__side:last-child {
    margin-left: auto; /* Sağa yasla */
    padding-right: 0.1rem; /* Sağ boşluk azaltıldı */
}

.sticky-header__title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-header__title a {
    color: white;
    text-decoration: none;
    font-family: var(--primary-font-set);
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.sticky-header__title a:hover {
    opacity: 1;
}

.sticky-header__actions {
    display: flex;
    align-items: center;
}
/* Modal açma butonları için stil */
.dmjs-btn-open-modal {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dmjs-btn-open-modal:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Arama ikonu için özel stil - çerçeve olmaması için */
#search-trigger.dmjs-btn-open-modal,
.sticky-header .dmjs-btn-open-modal {
    border: none;
    padding: 0;
    background: none;
}

#search-trigger.dmjs-btn-open-modal:hover,
.sticky-header .dmjs-btn-open-modal:hover {
    background: none;
    border: none;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sticky-header__content {
        padding: 0.9rem 1.5rem;
    }

    .sticky-header__title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .sticky-header__content {
        padding: 0.8rem 1rem;
    }

    .sticky-header__title {
        font-size: 1.1rem;
    }
}
/* Hero Section - Güncellendi */
/* Hero Section Styles */
.sidepage-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
  }
  

.sidepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

/* Orijinal HTML yapısı için güncelleme */
.renaissance-logo {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    pointer-events: none; /* Tıklanabilirliği kaldır */
}

.renaissance-logo::after {
    content: 'PROOST';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--primary-font-set);
    font-size: 5rem;
    color: white;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    z-index: 20;
    transition: all 0.5s ease;
}

/* Logo container'ı gizle */
.renaissance-logo-container {
    display: none;
}

/* Memnuniyet Anketi stilini güncelle */
p[style*="text-align: center"] {
    background-color: rgba(123, 109, 76, 0.8);
    margin: 0 !important;
    padding: 12px 0 !important;
}
.survey-button-container {
    text-align: center;
    padding: 10px 0;
    margin: 8px 0;
}

.survey-button {
    display: inline-block;
    background-color: #8B7355; /* Bronz/kahverengi tonu */
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.survey-button:hover {
    background-color: #9A8366; /* Hover durumunda biraz daha açık ton */
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* İkon kullanmak isterseniz */
.survey-button i {
    margin-right: 8px;
}



/* Menu Grid - Container güncellendi */
.sections-content {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

/* Kartların konumlandırması güncellendi */
.menu-grid-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover efekti */
.menu-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.black-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.menu-grid-item:hover .black-box {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Metin kutusu stili */
.text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dm-menusection-color);
    font-family: var(--dm-menusection-fontfamily);
    font-weight: var(--dm-menusection-fontweight);
    font-size: calc(var(--dm-menusection-fontsize) * 0.8);
    letter-spacing: var(--dm-menusection-tracking);
    text-transform: var(--dm-menusection-texttransform);
    text-align: center;
    padding: 20px;
    line-height: 120%;
    text-shadow: var(--dm-text-shadow);
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

/* Stil sınıflarına göre özel düzenlemeler */

/* style-1: Küçük kartlar (içecekler için) */
.menu-grid-item.style-1 {
    height: 150px;
}

/* style-2: Tam genişlikte kartlar (KAHVALTILAR, TATLILAR) */
.menu-grid-item.style-2 {
    grid-column: 1 / -1;
    height: 180px;
}

/* style-3: Normal kartlar (ARA SICAKLAR, MAKARNALAR, SOFT İÇECEKLER, ESPRESSO BAZLI KAHVELER) */
.menu-grid-item.style-3 {
    height: 180px;
}

/* style-4: Büyük kartlar (UZAKDOĞU, ANA YEMEKLER, KOKTEYLLER, MOKTEYLLER) */
.menu-grid-item.style-4 {
    grid-column: 1 / -1;
    height: 200px;
}

/* İlk 7 kartın özel düzeni */
/* KAHVALTILAR */
.menu-grid-item:nth-child(1) {
    grid-column: 1 / -1;
    height: 180px;
}

/* ARA SICAKLAR ve MAKARNALAR */
.menu-grid-item:nth-child(2),
.menu-grid-item:nth-child(3) {
    height: 180px;
}

/* SALATALAR */
.menu-grid-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3 / span 2;
    height: 400px;
}

/* UZAKDOĞU */
.menu-grid-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    height: 190px;
}

/* ANA YEMEKLER */
.menu-grid-item:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
    height: 190px;
}

/* TATLILAR */
.menu-grid-item:nth-child(7) {
    grid-column: 1 / -1;
    height: 200px;
}

/* KOKTEYLLER */
.menu-grid-item:nth-child(8) {
    grid-column: 1 / -1;
    height: 200px;
}

/* İçecek kartları (SANGRİA, ŞARAPLAR, VİSKİ, GIN, VODKA, TEKİLA, LİKÖR, BİRALAR) */
.menu-grid-item:nth-child(9),
.menu-grid-item:nth-child(10),
.menu-grid-item:nth-child(11),
.menu-grid-item:nth-child(12),
.menu-grid-item:nth-child(13),
.menu-grid-item:nth-child(14),
.menu-grid-item:nth-child(15),
.menu-grid-item:nth-child(16) {
    height: 150px;
}

/* MOKTEYLLER */
.menu-grid-item:nth-child(17) {
    grid-column: 1 / -1;
    height: 200px;
}

/* SOFT İÇECEKLER ve ESPRESSO BAZLI KAHVELER */
.menu-grid-item:nth-child(18),
.menu-grid-item:nth-child(19) {
    height: 180px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sections-content {
        padding: 1rem;
        max-width: 100%;
    }

    .menu-grid {
        gap: 1rem;
    }

    /* Tüm kartlar tek sütunda ve eşit yükseklikte */
    .menu-grid-item,
    .menu-grid-item.style-1,
    .menu-grid-item.style-2,
    .menu-grid-item.style-3,
    .menu-grid-item.style-4,
    .menu-grid-item:nth-child(1),
    .menu-grid-item:nth-child(2),
    .menu-grid-item:nth-child(3),
    .menu-grid-item:nth-child(4),
    .menu-grid-item:nth-child(5),
    .menu-grid-item:nth-child(6),
    .menu-grid-item:nth-child(7),
    .menu-grid-item:nth-child(8),
    .menu-grid-item:nth-child(9),
    .menu-grid-item:nth-child(10),
    .menu-grid-item:nth-child(11),
    .menu-grid-item:nth-child(12),
    .menu-grid-item:nth-child(13),
    .menu-grid-item:nth-child(14),
    .menu-grid-item:nth-child(15),
    .menu-grid-item:nth-child(16),
    .menu-grid-item:nth-child(17),
    .menu-grid-item:nth-child(18),
    .menu-grid-item:nth-child(19) {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 160px;
    }

    .text-box {
        font-size: calc(var(--dm-menusection-fontsize) * 0.7);
    }
}


/* Menu Section */
.menu-section-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.menu-section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: var(--dm-heading1-color);
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-item-info {
    flex: 1;
}

.menu-item-info h3 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: normal;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.modal-container.collapsed {
    opacity: 0;
    pointer-events: none;
}

.modal-header {
    background-color: var(--dm-modalheader-bgcolor);
    color: var(--dm-modalheader-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header .title {
    font-size: 1.2rem;
}

.modal-header .btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.modal-header .btn span {
    margin-left: 0.5rem;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: var(--dm-bgcolor);
}

.header-searchbar {
    flex: 1;
    margin-right: 1rem;
}

.header-searchbar input[type="search"] {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

.header-searchbar input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Survey Modal */
.form-survey {
    margin-top: 60px;
    font-family: sans-serif;
}

.star-container {
    margin: 50px 0;
}

.star-container p {
    text-align: center;
    font-weight: bold;
}

.star-rating {
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
}

.form-survey .star {
    font-size: 36px;
    color: #ccc;
    cursor: pointer;
}

.form-survey .star.selected {
    color: gold;
}

.form-survey .contact {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-survey textarea,
.form-survey input {
    border: none;
    border-radius: 6px;
}

.form-survey .contact input {
    width: 100%;
    margin-top: 6px;
    padding: 7px;
}

.form-survey textarea {
    width: 100%;
    font-size: 18px;
    line-height: 110%;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.form-survey .btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--dm-btnorder-bgcolor);
    color: var(--dm-btnorder-color);
    cursor: pointer;
}

/* Location Modal */
.thumb-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumb-list .item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
}

.thumb-list .item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.thumb {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.thumb.googlemaps {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Google_Maps_icon_%282020%29.svg/1200px-Google_Maps_icon_%282020%29.svg.png');
}

.thumb.yandexnav {
    background-image: url('https://play-lh.googleusercontent.com/oq8P4uHCKz_-rGgA8W-kQJfgx_warGbKAJQZkP2PgFjOIu_vXmlYjhSyIcCqYzXUf_E');
}

/* Footer */
footer {
    background-color: var(--dm-sidebar-bg);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}

.social-footer {
    margin-bottom: 1rem;
}

.social-footer-item {
    color: white;
    margin: 0 0.5rem;
}

.footer-company-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-company-address {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.text-link {
    color: var(--dm-link-color);
}

.btn-page {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: none;
    border: 1px solid var(--dm-link-color);
    color: var(--dm-link-color);
    border-radius: 4px;
    cursor: pointer;
}

.footer-dmenu {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive tasarım güncellendi */
@media (max-width: 768px) {
    .sections-content {
        padding: 1rem;
        max-width: 100%;
    }

    .menu-grid {
        gap: 0.8rem;
    }

    .menu-grid-item,
    .menu-grid-item:first-child,
    .menu-grid-item:nth-child(2),
    .menu-grid-item:nth-child(3),
    .menu-grid-item:nth-child(4),
    .menu-grid-item:nth-child(5),
    .menu-grid-item:nth-child(6),
    .menu-grid-item:nth-child(7),
    .menu-grid-item:nth-child(8) {
        grid-column: 1 / -1;
        height: 160px;
    }

    .text-box {
        font-size: calc(var(--dm-menusection-fontsize) * 0.7);
    }
    
    .renaissance-logo-container {
        width: 180px;
        height: 130px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sections-content {
        padding: 0.5rem;
    }

    .menu-grid {
        gap: 0.5rem;
    }

    .menu-grid-item,
    .menu-grid-item:first-child,
    .menu-grid-item:nth-child(2),
    .menu-grid-item:nth-child(3),
    .menu-grid-item:nth-child(4),
    .menu-grid-item:nth-child(5),
    .menu-grid-item:nth-child(6),
    .menu-grid-item:nth-child(7),
    .menu-grid-item:nth-child(8) {
        height: 140px;
    }

    .text-box {
        font-size: calc(var(--dm-menusection-fontsize) * 0.6);
    }
}

/* Kahvaltılar sayfası için ek stiller */
.menu-section-container {
    padding-top: 2rem;
}

.menu-section-title {
    font-family: var(--dm-menusection-fontfamily);
    letter-spacing: var(--dm-menusection-tracking);
    margin-bottom: 2.5rem;
    text-transform: var(--dm-menusection-texttransform);
}

/* Arama sonuçları için stiller */
.search-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-item {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.search-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.search-item-content p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}


/* Menu Hero Styles */
.menu-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.menu-hero__content {
    position: relative;
    z-index: 1;
}

.menu-hero__title {
    font-size: 5rem;
    margin: 0;
    font-family: var(--primary-font-set);
    letter-spacing: 0.2em;
}

.menu-hero__subtitle {
    font-size: 2.5rem;
    margin: 1rem 0 2rem;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
}

.menu-hero__back-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.menu-hero__back-button:hover {
    background: white;
    color: black;
}




////KAHVALTILAR CSS

/* Menu Items Styles */
.menu-items {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 4px;
    color: white;
}

.menu-item__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.menu-item__content {
    flex-grow: 1;
    margin-right: 1.5rem;
}

.menu-item__title {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-item__description {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.menu-item__price {
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Footer Styles */
.site-footer {
    background: rgba(139, 115, 85, 0.9);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.restaurant-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.restaurant-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-hero__title {
        font-size: 3.5rem;
    }

    .menu-hero__subtitle {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item__image {
        margin: 0 0 1rem;
    }

    .menu-item__content {
        margin: 0 0 1rem;
    }
}



//* Menu Section Title */
.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  /* Menu Item Updates */
  .menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 8px;
    padding: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .menu-item__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }
  
  .menu-item__image::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .menu-item__image:hover::after {
    opacity: 1;
  }
  
  .menu-item__image:hover img {
    filter: brightness(0.8);
  }
  
  .menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover .menu-item__image img {
    transform: scale(1.05);
  }
  
  .menu-item__content {
    flex-grow: 1;
    margin-right: 1.2rem;
  }
  
  .menu-item__title {
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .menu-item__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .menu-item__price {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
  }
  
  /* Responsive Updates */
  @media (max-width: 768px) {
    .menu-section-title {
      font-size: 1.3rem;
    }
  
    .menu-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .menu-item__image {
      width: 90px;
      height: 90px;
      margin: 0 0 0.8rem;
    }
  
    .menu-item__content {
      margin: 0 0 0.8rem;
    }
  
    .menu-item__title {
      font-size: 1.1rem;
    }
  
    .menu-item__price {
      font-size: 1.2rem;
      min-width: 90px;
    }
  }
  
  /* Image Modal Styles */
  .image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-modal.active {
    display: flex;
    opacity: 1;
  }
  
  .image-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    text-align: center;
  }
  
  .image-modal__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .image-modal__caption {
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1rem auto;
  }
  
  .image-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .image-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .image-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
  }
  
  .image-modal__nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .image-modal__nav--prev {
    left: 1rem;
    border-radius: 0 40px 40px 0;
  }
  
  .image-modal__nav--next {
    right: 1rem;
    border-radius: 40px 0 0 40px;
  }
  
  @media (max-width: 768px) {
    .image-modal__nav {
      width: 30px;
      height: 60px;
      font-size: 1.5rem;
    }
  
    .image-modal__close {
      font-size: 1.5rem;
      width: 30px;
      height: 30px;
    }
  
    .image-modal__caption {
      font-size: 1rem;
      padding: 0.5rem;
    }
  }
  
  

//// SALATALAR CSS

/* Menu Section Title */
.menu-section-title {
    color: #8B7355;
    font-size: 2rem;
    margin: 2rem 0;
    text-align: left;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(139, 115, 85, 0.3);
}

/* Menu Item Updates */
.menu-item {
    margin-bottom: 1.5rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-item__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: 0.05em;
}

.menu-item__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-item__price {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .menu-section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .menu-item__title {
        font-size: 1.1rem;
    }

    .menu-item__price {
        font-size: 1.2rem;
        min-width: 80px;
    }
}




/////MAKARNALAR CSS

/* Menu Section Title */
.menu-section-title {
    color: #8B7355;
    font-size: 2rem;
    margin: 2rem 0;
    text-align: left;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(139, 115, 85, 0.3);
}

/* Menu Item Updates */
.menu-item {
    margin-bottom: 1.5rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-item__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: 0.05em;
}

.menu-item__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-item__price {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .menu-section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .menu-item__title {
        font-size: 1.1rem;
    }

    .menu-item__price {
        font-size: 1.2rem;
        min-width: 80px;
    }
}




////UZAKDOĞU CSS
/* Sushi Menu Specific Styles */
.menu-section {
    margin-bottom: 3rem;
}

.menu-subsection-title {
    color: rgba(139, 115, 85, 0.9);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--primary-font-set);
    letter-spacing: 0.05em;
}

.menu-item--set {
    background: rgba(139, 115, 85, 0.95);
}

.menu-item--set .menu-item__image {
    width: 150px;
    height: 150px;
}

.menu-item__set-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.menu-item__set-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.phone a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-item--set {
        text-align: center;
    }

    .menu-item--set .menu-item__image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }

    .menu-item__set-list {
        text-align: left;
        max-width: 300px;
        margin: 0.5rem auto;
    }
}


//// ANAYEMEKLER CSS
/* Ana Yemekler Specific Styles */
.menu-section {
    margin-bottom: 2.5rem;
  }
  
  .menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .menu-item__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover .menu-item__image img {
    transform: scale(1.05);
  }
  
  .menu-item__content {
    flex-grow: 1;
    margin-right: 1.2rem;
  }
  
  .menu-item__title {
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .menu-item__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .menu-item__price {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-section-title {
      font-size: 1.3rem;
    }
  
    .menu-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .menu-item__image {
      width: 90px;
      height: 90px;
      margin: 0 0 0.8rem;
    }
  
    .menu-item__content {
      margin: 0 0 0.8rem;
    }
  
    .menu-item__title {
      font-size: 1.1rem;
    }
  
    .menu-item__price {
      font-size: 1.2rem;
      min-width: 90px;
    }
  }
  
  
  

/// TATLILAR CSS

.menu-section {
    margin-bottom: 2.5rem;
  }
  
  .menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .menu-item__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover .menu-item__image img {
    transform: scale(1.05);
  }
  
  .menu-item__content {
    flex-grow: 1;
    margin-right: 1.2rem;
  }
  
  .menu-item__title {
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .menu-item__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .menu-item__price {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-section-title {
      font-size: 1.3rem;
    }
  
    .menu-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .menu-item__image {
      width: 90px;
      height: 90px;
      margin: 0 0 0.8rem;
    }
  
    .menu-item__content {
      margin: 0 0 0.8rem;
    }
  
    .menu-item__title {
      font-size: 1.1rem;
    }
  
    .menu-item__price {
      font-size: 1.2rem;
      min-width: 90px;
    }
  }
  



///KOKTEYLLER CSS

/* Kokteyller Specific Styles */
.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-subsection-title {
    color: rgba(157, 229, 255, 0.9);
    font-size: 1.4rem;
    margin: 1.5rem 0;
    text-align: left;
    font-family: var(--primary-font-set);
    letter-spacing: 0.05em;
}

.menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-list {
    margin: 1rem 0;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 4px;
}

.menu-list-item__name {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.menu-list-item__price {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.menu-subgroup {
    margin: 2rem 0;
}

.menu-subgroup__title {
    color: white;
    font-size: 1.3rem;
    margin: 1rem 0;
    letter-spacing: 0.05em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-section-title {
        font-size: 1.5rem;
    }

    .menu-subsection-title {
        font-size: 1.2rem;
    }

    .menu-list-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .menu-list-item__name {
        margin-bottom: 0.5rem;
    }

    .menu-list-item__price {
        font-size: 1rem;
    }
}


///SANGRİA CSS

/* Sangria Specific Styles */
.menu-section {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.menu-item {
  display: flex;
  align-items: center;
  background: rgba(139, 115, 85, 0.9);
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-item__image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-right: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item__image img {
  transform: scale(1.05);
}

.menu-item__content {
  flex-grow: 1;
  margin-right: 1.5rem;
}

.menu-item__title {
  font-size: 1.4rem;
  margin: 0;
  color: white;
  letter-spacing: 0.05em;
  font-family: var(--primary-font-set);
}

.menu-item__price {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: 120px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem;
  }

  .menu-item__image {
    width: 80px;
    height: 80px;
    margin: 0 0 0.8rem;
  }

  .menu-item__content {
    margin: 0 0 0.8rem;
  }

  .menu-item__title {
    font-size: 1.2rem;
  }

  .menu-item__price {
    font-size: 1.1rem;
    min-width: 100px;
  }
}




//// ŞARAPLAR CSS


/* Şaraplar Specific Styles */
.wine-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wine-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wine-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wine-item__image {
    width: 30px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wine-item__content {
    flex-grow: 1;
    margin-right: 1.5rem;
}

.wine-item__title {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
}

.wine-item__price {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wine-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .wine-item__image {
        margin: 0 0 0.8rem;
    }

    .wine-item__content {
        margin: 0 0 0.8rem;
    }

    .wine-item__title {
        font-size: 1.1rem;
    }

    .wine-item__price {
        font-size: 1.1rem;
        min-width: 90px;
    }

    .menu-section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
}


///VİSKİ CSS
/* Whiskey Menu Specific Styles */
.menu-section {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.whiskey-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whiskey-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whiskey-item__image {
    width: 30px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whiskey-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.whiskey-item__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whiskey-item__title {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
}

.whiskey-item__prices {
    display: flex;
    gap: 1rem;
}

.whiskey-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 100px;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whiskey-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .whiskey-item__image {
        margin: 0 0 0.8rem;
    }

    .whiskey-item__content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .whiskey-item__prices {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .whiskey-item__price {
        align-items: center;
    }

    .menu-section-title {
        font-size: 1.5rem;
    }

    .whiskey-item__title {
        font-size: 1.1rem;
    }
}

///GIN CSS

/* Spirit Menu Styles (Gin, Whiskey, etc.) */
.spirit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .spirit-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .spirit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .spirit-item__image {
    width: 25px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spirit-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .spirit-item__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .spirit-item__title {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .spirit-item__prices {
    display: flex;
    gap: 1.5rem;
  }
  
  .spirit-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
  }
  
  .price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
  }
  
  .price-amount {
    font-size: 1rem;
    font-weight: 600;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .spirit-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .spirit-item__image {
      margin: 0 0 0.8rem;
      height: 60px;
    }
  
    .spirit-item__content {
      flex-direction: column;
      gap: 0.8rem;
    }
  
    .spirit-item__prices {
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }
  
    .spirit-item__price {
      align-items: center;
      min-width: 80px;
    }
  
    .spirit-item__title {
      font-size: 1rem;
    }
  
    .price-amount {
      font-size: 0.9rem;
    }
  
    .price-label {
      font-size: 0.75rem;
    }
  }


///VODKA CSS

/* Spirit Menu Styles (Gin, Whiskey, etc.) */
.spirit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .spirit-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .spirit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .spirit-item__image {
    width: 25px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spirit-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .spirit-item__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .spirit-item__title {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .spirit-item__prices {
    display: flex;
    gap: 1.5rem;
  }
  
  .spirit-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
  }
  
  .price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
  }
  
  .price-amount {
    font-size: 1rem;
    font-weight: 600;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .spirit-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .spirit-item__image {
      margin: 0 0 0.8rem;
      height: 60px;
    }
  
    .spirit-item__content {
      flex-direction: column;
      gap: 0.8rem;
    }
  
    .spirit-item__prices {
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }
  
    .spirit-item__price {
      align-items: center;
      min-width: 80px;
    }
  
    .spirit-item__title {
      font-size: 1rem;
    }
  
    .price-amount {
      font-size: 0.9rem;
    }
  
    .price-label {
      font-size: 0.75rem;
    }
  }
  
  

///TEKİLA CSS

/* Spirit Menu Styles (Gin, Whiskey, etc.) */
.spirit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .spirit-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .spirit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .spirit-item__image {
    width: 25px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spirit-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .spirit-item__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .spirit-item__title {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .spirit-item__prices {
    display: flex;
    gap: 1.5rem;
  }
  
  .spirit-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
  }
  
  .price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
  }
  
  .price-amount {
    font-size: 1rem;
    font-weight: 600;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .spirit-item {
      flex-direction: column;
      text-align: center;
      padding: 0.8rem;
    }
  
    .spirit-item__image {
      margin: 0 0 0.8rem;
      height: 60px;
    }
  
    .spirit-item__content {
      flex-direction: column;
      gap: 0.8rem;
    }
  
    .spirit-item__prices {
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }
  
    .spirit-item__price {
      align-items: center;
      min-width: 80px;
    }
  
    .spirit-item__title {
      font-size: 1rem;
    }
  
    .price-amount {
      font-size: 0.9rem;
    }
  
    .price-label {
      font-size: 0.75rem;
    }
  }

///LİKÖR CSS

/* Liqueur Menu Specific Styles */
.liqueur-list {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .liqueur-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .liqueur-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .liqueur-item__name {
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.05em;
  }
  
  .liqueur-item__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    min-width: 80px;
    text-align: right;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .liqueur-list {
      margin: 1.5rem auto;
    }
  
    .liqueur-item {
      padding: 0.8rem 1.2rem;
    }
  
    .liqueur-item__name {
      font-size: 1rem;
    }
  
    .liqueur-item__price {
      font-size: 1rem;
      min-width: 70px;
    }
  }
  
  


///BİRALAR CSS

/* Whiskey Menu Specific Styles */
.menu-section {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.whiskey-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whiskey-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whiskey-item__image {
    width: 30px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whiskey-item__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.whiskey-item__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whiskey-item__title {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
}

.whiskey-item__prices {
    display: flex;
    gap: 1rem;
}

.whiskey-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 100px;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whiskey-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .whiskey-item__image {
        margin: 0 0 0.8rem;
    }

    .whiskey-item__content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .whiskey-item__prices {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .whiskey-item__price {
        align-items: center;
    }

    .menu-section-title {
        font-size: 1.5rem;
    }

    .whiskey-item__title {
        font-size: 1.1rem;
    }
}

///MOKTEYL CSS
/* Kokteyller Specific Styles */
.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-subsection-title {
    color: rgba(157, 229, 255, 0.9);
    font-size: 1.4rem;
    margin: 1.5rem 0;
    text-align: left;
    font-family: var(--primary-font-set);
    letter-spacing: 0.05em;
}

.menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-list {
    margin: 1rem 0;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 4px;
}

.menu-list-item__name {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.menu-list-item__price {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.menu-subgroup {
    margin: 2rem 0;
}

.menu-subgroup__title {
    color: white;
    font-size: 1.3rem;
    margin: 1rem 0;
    letter-spacing: 0.05em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-section-title {
        font-size: 1.5rem;
    }

    .menu-subsection-title {
        font-size: 1.2rem;
    }

    .menu-list-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .menu-list-item__name {
        margin-bottom: 0.5rem;
    }

    .menu-list-item__price {
        font-size: 1rem;
    }
}



/// SOFT İÇECEKLER CSS
/* Kokteyller Specific Styles */
.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section-title {
    color: rgba(157, 229, 255, 1);
    font-size: 1.8rem;
    margin: 1.8rem 0;
    text-align: center;
    font-family: var(--primary-font-set);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-subsection-title {
    color: rgba(157, 229, 255, 0.9);
    font-size: 1.4rem;
    margin: 1.5rem 0;
    text-align: left;
    font-family: var(--primary-font-set);
    letter-spacing: 0.05em;
}

.menu-item {
    display: flex;
    align-items: center;
    background: rgba(139, 115, 85, 0.9);
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-list {
    margin: 1rem 0;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 4px;
}

.menu-list-item__name {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.menu-list-item__price {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.menu-subgroup {
    margin: 2rem 0;
}

.menu-subgroup__title {
    color: white;
    font-size: 1.3rem;
    margin: 1rem 0;
    letter-spacing: 0.05em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-section-title {
        font-size: 1.5rem;
    }

    .menu-subsection-title {
        font-size: 1.2rem;
    }

    .menu-list-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .menu-list-item__name {
        margin-bottom: 0.5rem;
    }

    .menu-list-item__price {
        font-size: 1rem;
    }
}




///ESPRESSO BAZLI İÇECEKLER

/* Sushi Menu Specific Styles */
.menu-section {
    margin-bottom: 3rem;
}

.menu-subsection-title {
    color: rgba(139, 115, 85, 0.9);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--primary-font-set);
    letter-spacing: 0.05em;
}

.menu-item--set {
    background: rgba(139, 115, 85, 0.95);
}

.menu-item--set .menu-item__image {
    width: 150px;
    height: 150px;
}

.menu-item__set-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.menu-item__set-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.phone a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-item--set {
        text-align: center;
    }

    .menu-item--set .menu-item__image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }

    .menu-item__set-list {
        text-align: left;
        max-width: 300px;
        margin: 0.5rem auto;
    }
}

