/* Genel Stil */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Genel Ayarlar */
    .ramazan-wrapper {
        font-family: 'Poppins', sans-serif;
        color: #d4af37;
        padding: 10px;
        background: #fff; /* Arka plan yok, temiz beyaz */
    }

    .container {
        max-width: 1100px;
        margin: 0 auto 40px auto;
    }

    /* Kategori Başlıkları */
    .category-header {
        color: #851a0d; 
        border-bottom: 2px solid #f0f0f0; 
        padding-bottom: 12px; 
        margin: 40px 0 20px 0;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
    }

    .category-header::before {
        content: "";
        width: 8px;
        height: 25px;
        background: #851a0d;
        margin-right: 12px;
        border-radius: 2px;
    }

    /* Menü Izgarası */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    /* Menü Kartları */
    .menu-card {
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        background: #0a1a19;
        transition: all 0.2s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-card:hover {
        border-color: #d4af37;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .menu-title {
        color: #d4af37;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-items li {
        font-size: 0.85rem;
        padding: 6px 0;
        color: #FFFFFF;
        border-bottom: 1px dashed #e5e5e5;
    }

    .menu-items li:last-child {
        border-bottom: none;
    }

    /* Fiyat Alanı */
    .price {
        margin-top: 15px;
        font-weight: 600;
        color: #FFFFFF;
        text-align: center;
        background: #d4af37;
        padding: 8px;
        border-radius: 6px;
        border: 1px solid #f0f0f0;
    }

    /* Mobil Uyumluluk */
    @media (max-width: 600px) {
        .menu-grid {
            grid-template-columns: 1fr 1fr; /* Mobilde yan yana 2 kart */
            gap: 10px;
        }
        .menu-card {
            padding: 12px;
        }
        .menu-title {
            font-size: 0.9rem;
        }
        .menu-items li {
            font-size: 0.75rem;
        }
        .category-header {
            font-size: 1.2rem;
        }
    }


.ramazan-hero-section {
        padding: 60px 20px;
        text-align: center;
        background-color: #0a1a19; /* Derin yeşil/siyah tonu */
        font-family: 'Poppins', sans-serif;
    }

    .header-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .year-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        border: 1px solid #D4AF37;
        margin-bottom: 15px;
    }

    .main-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3.5rem); /* Mobil uyumlu boyut */
        color: #ffffff;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .divider {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .divider::before, .divider::after {
        content: "";
        height: 1px;
        width: 60px;
        background: linear-gradient(to right, transparent, #D4AF37, transparent);
    }

    .moon-icon {
        margin: 0 15px;
        font-size: 1.5rem;
    }

    .sub-text {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: #c5c5c5;
        font-weight: 300;
        line-height: 1.6;
        margin: 0;
    }

    .sub-text strong {
        color: #D4AF37; /* Tam zamanında vurgusu için altın rengi */
        font-weight: 500;
    }

    /* Hafif parıltı efekti */
    .main-title {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    
    .premium-announcement {
        background: linear-gradient(135deg, #851a0d 0%, #5a1109 100%);
        color: #fff;
        padding: 15px 25px;
        margin: 30px auto;
        max-width: 1100px;
        border-radius: 50px; /* Oval şık bir görünüm */
        border: 2px solid #D4AF37;
        box-shadow: 0 10px 30px rgba(133, 26, 13, 0.2);
        position: relative;
        overflow: hidden;
    }

    /* Arka plana çok hafif bir parlama efekti */
    .premium-announcement::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .announcement-track {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .announcement-item {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        letter-spacing: 1px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .highlight {
        color: #D4AF37;
        font-weight: 600;
    }

    .discount-pill {
        background: #D4AF37;
        color: #851a0d;
        padding: 3px 12px;
        border-radius: 20px;
        font-weight: 700;
        margin-left: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .announcement-divider {
        width: 1px;
        height: 25px;
        background: rgba(212, 175, 55, 0.4);
    }

    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .premium-announcement {
            border-radius: 15px;
            padding: 15px;
        }
        .announcement-track {
            flex-direction: column;
            gap: 12px;
        }
        .announcement-divider {
            display: none;
        }
        .announcement-item {
            font-size: 0.8rem;
            text-align: center;
        }
    }
    
    .call-button {
        display: inline-block;
        text-decoration: none;
        background: linear-gradient(135deg, #851a0d 0%, #a32111 100%);
        border: 2px solid #D4AF37;
        border-radius: 15px;
        padding: 15px 40px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(133, 26, 13, 0.3);
        margin: 30px auto;
        display: flex;
        max-width: fit-content;
    }

    .call-button:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(133, 26, 13, 0.4);
        border-color: #fff;
    }

    .button-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .text-group {
        display: flex;
        flex-direction: column;
        text-align: left;
        font-family: 'Poppins', sans-serif;
    }

    .btn-small-text {
        color: #D4AF37;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .btn-large-text {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .btn-phone {
        color: rgba(255,255,255,0.9);
        font-size: 1rem;
        font-weight: 400;
    }

    /* Nabız Efekti */
    .pulse-icon {
        background: #D4AF37;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .pulse-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #D4AF37;
        animation: pulse-animation 2s infinite;
        opacity: 0.6;
    }

    @keyframes pulse-animation {
        0% { transform: scale(1); opacity: 0.6; }
        100% { transform: scale(1.8); opacity: 0; }
    }

    @media (max-width: 600px) {
        .call-button {
            padding: 12px 25px;
        }
        .btn-large-text { font-size: 1.1rem; }
        .btn-phone { font-size: 0.9rem; }
    }
    
    <style>
    .gallery-section {
        padding: 40px 0;
        background: #fff;
        text-align: center;
        width: 100%;
        overflow: hidden; /* Dışarı taşmayı engeller */
    }

    .gallery-title {
        font-family: 'Poppins', sans-serif;
        color: #851a0d;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        padding: 0 15px;
        text-transform: uppercase;
    }

    /* KAYDIRMAYI SAĞLAYAN KRİTİK ALAN */
    .gallery-container {
        display: flex; /* Elemanları yan yana dizer */
        flex-wrap: nowrap; /* Elemanların alt satıra geçmesini engeller (En önemlisi) */
        overflow-x: auto; /* Yatay kaydırmayı aktif eder */
        -webkit-overflow-scrolling: touch; /* Mobilde akıcı kaydırma sağlar */
        scroll-snap-type: x mandatory; /* Fotoğrafların tak diye durmasını sağlar */
        gap: 15px;
        padding: 10px 20px 30px 20px;
        
        /* Kaydırma çubuğunu gizlemek istersen bunları kullan: */
        scrollbar-width: thin;
        scrollbar-color: #D4AF37 transparent;
    }

    /* Fotoğraf Kartları */
    .gallery-item {
        flex: 0 0 300px; /* Fotoğrafların mobildeki genişliği (Sabitler) */
        width: 300px;
        height: 300px;
        scroll-snap-align: center;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid #D4AF37;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 500x500 kareyi bozmadan doldurur */
        display: block;
    }

    .gallery-hint {
        font-family: 'Poppins', sans-serif;
        font-size: 0.85rem;
        color: #999;
        margin-top: 5px;
        font-style: italic;
    }

    /* Masaüstü için boyutu biraz büyütelim */
    @media (min-width: 768px) {
        .gallery-item {
            flex: 0 0 450px;
            width: 450px;
            height: 450px;
        }
    }
.premium-gallery-header {
        text-align: center;
        padding: 40px 20px 20px;
        background: #fff;
    }

    .gold-subtitle {
        display: block;
        font-family: 'Poppins', sans-serif;
        color: #D4AF37;
        letter-spacing: 5px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .premium-title {
        font-family: 'Playfair Display', serif;
        color: #851a0d;
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        line-height: 1.2;
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
    }

    .premium-title span {
        font-weight: 400;
        display: block;
        font-size: 0.8em;
        margin-top: 5px;
        color: #333;
        letter-spacing: 1px;
    }

    .header-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .header-decoration .line {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, #D4AF37, transparent);
    }

    .header-decoration .dot {
        width: 4px;
        height: 4px;
        background: #D4AF37;
        border-radius: 50%;
    }

    .header-decoration .ornament {
        font-size: 1.2rem;
        color: #D4AF37;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    /* Mobil Ayarı */
    @media (max-width: 600px) {
        .premium-gallery-header {
            padding: 30px 10px 10px;
        }
        .premium-title {
            font-size: 1.3rem;
        }
        .gold-subtitle {
            font-size: 0.7rem;
            letter-spacing: 3px;
        }
    }
    
    .compact-notice-bar {
        max-width: 800px;
        margin: 20px auto;
        padding: 0 10px;
        font-family: 'Poppins', sans-serif;
    }

    .notice-inner {
        position: relative;
        background: #851a0d;
        border-bottom: 3px solid #D4AF37; /* Altın sarısı sadece altta zarif bir hat */
        padding: 10px 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .notice-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        z-index: 2;
    }

    .notice-icon {
        font-size: 1.2rem;
    }

    .notice-text {
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-align: center;
        line-height: 1.2;
    }

    .notice-arrow {
        color: #D4AF37;
        font-weight: bold;
        animation: arrowJump 1.5s infinite;
        font-size: 1.2rem;
    }

    @keyframes arrowJump {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(4px); }
    }

    /* Arka planda çok hafif bir parlama hareketi */
    .notice-glow {
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: glowShift 4s infinite;
    }

    @keyframes glowShift {
        0% { left: -100%; }
        40% { left: 100%; }
        100% { left: 100%; }
    }

    /* MOBİL ÖZEL AYARI */
    @media (max-width: 600px) {
        .notice-inner {
            padding: 8px 10px;
        }
        .notice-text {
            font-size: 0.75rem; /* Mobilde yazıyı hafif küçülterek taşmayı engelledik */
            letter-spacing: 0px;
        }
        .notice-icon {
            font-size: 1rem;
        }
    }
    
    /* 1. ANA KAPSAYICI: Sayfanın dışına asla çıkmaz */
    .tamas-section-fix {
        width: 100%;
        max-width: 1200px; /* Sitenin genel genişliğine göre ayarlandı */
        margin: 0 auto;
        padding: 0px 15px;
        overflow: hidden; /* Dışarı taşan her şeyi gizler */
        box-sizing: border-box;
        background: #fff;
    }

    /* 2. BAŞLIK TASARIMI */
    .premium-gallery-header { text-align: center; margin-bottom: 25px; }
    .gold-subtitle { display: block; font-family: 'Poppins', sans-serif; color: #D4AF37; letter-spacing: 4px; font-size: 0.75rem; font-weight: 600; }
    .premium-title { font-family: 'Playfair Display', serif; color: #851a0d; font-size: 1.8rem; margin: 10px 0; text-transform: uppercase; }
    .premium-title span { font-weight: 400; font-size: 0.7em; color: #555; display: block; }
    .header-decoration { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; }
    .header-decoration .line { width: 30px; height: 1px; background: #D4AF37; }
    .header-decoration .dot { width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; }

    /* 3. KAYDIRMA ALANI: Mobilde ve masaüstünde taşmayı önleyen ana parça */
    .gallery-safe-scroll {
        width: 100%;
        overflow-x: auto; /* Sadece bu kutu içinde kaydırma yapar */
        padding-bottom: 15px;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    /* Gizli Scrollbar temizliği */
    .gallery-safe-scroll::-webkit-scrollbar { height: 5px; }
    .gallery-safe-scroll::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }

    .gallery-inner-flex {
        display: flex;
        gap: 15px;
        width: max-content; /* İçerik kadar genişlemesini sağlar, sayfayı bozmaz */
    }

    .gallery-card {
        width: 300px;
        height: 300px;
        flex-shrink: 0;
        border: 2px solid #D4AF37;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .gallery-card img { width: 100%; height: 100%; object-fit: cover; }
    .gallery-hint { text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.8rem; color: #999; margin-top: 10px; }

    /* Mobil Ayarı */
    @media (max-width: 768px) {
        .gallery-card { width: 260px; height: 260px; }
        .premium-title { font-size: 1.4rem; }
    }
    
    .header-clean-wrapper {
        text-align: center;
        padding: 8px 20px;
        background: transparent; /* Arka plan yok */
        font-family: 'Poppins', sans-serif;
    }

    .header-badge-clean {
        display: inline-block;
        border: 1.5px solid #D4AF37;
        color: #D4AF37;
        padding: 4px 18px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .header-title-clean {
        font-family: 'Playfair Display', serif;
        color: #1a1a1a; /* Koyu antrasit/siyah */
        font-size: clamp(2rem, 6vw, 3.5rem);
        line-height: 1.1;
        margin: 0;
        font-weight: 700;
    }

    .header-title-clean span {
        color: #851a0d; /* Menülerle uyumlu bordo vurgu */
        font-weight: 400;
    }

    .header-divider-clean {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
    }

    .divider-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, #D4AF37, transparent);
    }

    .divider-moon {
        font-size: 1.2rem;
        color: #D4AF37;
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    }

    .header-subtitle-clean {
        color: #555;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .header-subtitle-clean strong {
        color: #D4AF37;
        font-weight: 600;
    }

    /* Mobil Düzenleme */
    @media (max-width: 600px) {
        .header-clean-wrapper { padding: 3px 15px; }
        .header-title-clean { font-size: 1.8rem; }
        .header-subtitle-clean { font-size: 0.95rem; }
        .divider-line { width: 40px; }
    }
    
    .iftar-premium-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Masaüstünde yan yana 2'li */
        gap: 15px;
        max-width: 1000px;
        margin: 20px auto;
        padding: 0 15px;
        font-family: 'Poppins', sans-serif;
    }

    .premium-box {
        display: flex;
        align-items: flex-start;
        background: #851a0d; /* Bordo Arka Plan */
        border: 1px solid rgba(212, 175, 55, 0.3); /* Hafif Altın Çerçeve */
        border-radius: 12px;
        padding: 15px;
        gap: 12px;
        transition: transform 0.3s ease;
    }

    .premium-dot-box {
        padding-top: 4px;
    }

    .premium-dot {
        display: block;
        width: 10px;
        height: 10px;
        background: #D4AF37; /* Altın Sarısı Nokta */
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

    .premium-text h3 {
        margin: 0;
        font-size: 0.85rem;
        color: #D4AF37; /* Başlıklar Altın Sarısı */
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .premium-text p {
        margin: 4px 0 0 0;
        font-size: 0.75rem;
        color: #ffffff; /* Açıklamalar Beyaz */
        line-height: 1.3;
        opacity: 0.9;
    }

    /* MOBİL DÜZENLEME */
    @media (max-width: 768px) {
        .iftar-premium-grid {
            grid-template-columns: 1fr; /* Mobilde alt alta, çok yer kaplamaz */
            gap: 10px;
        }
        .premium-box {
            padding: 12px;
        }
        .premium-text h3 {
            font-size: 0.8rem;
        }
        .premium-text p {
            font-size: 0.7rem;
        }
    }