body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f8f8f8;
}

.full-width-banner {
    background-color: #a81e3f;
    color: white;
    width: 100%; /* Ekranın tamamını kapla */
    padding: 10px 0; /* Üstten ve alttan padding */
    text-align: center;
    margin: 0;
}

.tab-container {
    overflow-x: auto; /* Enable horizontal scrolling */
}

.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tab {
    flex: none; /* Prevent tabs from stretching */
    text-align: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.tab:hover {
    background: #f1f1f1;
}

.tab.active {
    background: #a81e3f;
    color: white;
    border-color: #a81e3f;
}

.tab a {
    text-decoration: none;
    color: inherit;
    display: block; /* Tam blok yapmak için */
    padding: 10px; /* İçerik için padding ekleyin */
}

.menu-items {
    display: none;
}

.menu-items.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default to 1 column for small screens */
    gap: 10px;
}

.menu-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.menu-item img {
    width: 100%; /* Full width for small screens */
    height: auto;
}

.details {
    padding: 3px;
}

.price {
    font-weight: bold;
    color: #a81e3f;
}

.centered-vejeteryan {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    height: 100vh; /* Sayfanın tamamını kapsar */
    padding: 20px; /* İsteğe bağlı, çevreye boşluk ekler */
    box-sizing: border-box;
}
@media (min-width: 600px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for tablets and larger */
    }
}
 /* Popup temel stil */
        .popup {
            display: none; /* Başlangıçta gizli */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Yarı şeffaf arka plan */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .popup h1 {
            font-size: 28px;
            margin-bottom: 10px;
            font-family: 'Arial', sans-serif;
        }

        .popup p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* Kapatma butonu (X işareti) */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            font-weight: bold;
        }

        /* Görsel Alanı */
        .popup-image {
            width: 100%; /* Görselin genişliğini popup'a göre ayarlar */
            max-height: 250px; /* Maksimum yükseklik */
            object-fit: cover; /* Görselin kesilmesini engeller */
            border-radius: 8px;
            margin-bottom: 20px;
        }