/* ===== MOBILE BANNER FIX CSS ===== */
/* Bu dosyayı head bölümüne ekleyin: <link rel="stylesheet" href="mobile-banner-fix.css"> */

@media (max-width: 768px) {
    /* Banner slide özel pozisyonlama */
    .banner-slide {
        background-size: cover !important;
        background-position: center top !important;
        position: relative !important;
    }
    
    /* İlk banner - Logo merkezli */
    .banner-slide:nth-child(1) {
        background-position: center 20% !important;
    }
    
    /* İkinci banner - Kalite görsel ortala */
    .banner-slide:nth-child(2) {
        background-position: center 25% !important;
    }
    
    /* Üçüncü banner - Doğal lezzetler ortala */
    .banner-slide:nth-child(3) {
        background-position: center center !important;
    }
    
    /* Banner content mobil için optimize edilmiş pozisyon */
    .banner-content {
        position: absolute !important;
        top: 35% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 92% !important;
        max-width: 360px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(8px) !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
        text-align: center !important;
        z-index: 10 !important;
    }
    
    /* Banner yazı stilleri */
    .banner-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
        font-weight: 700 !important;
        color: #2d3748 !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        text-shadow: none !important;
        box-shadow: none !important;
    }
    
    .banner-subtitle {
        font-size: clamp(0.9rem, 3.8vw, 1.1rem) !important;
        color: #4a5568 !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.5 !important;
    }
    
    /* Banner butonları */
    .banner-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        margin-top: 1rem !important;
    }
    
    .banner-cta .btn-ultra {
        width: 100% !important;
        max-width: 240px !important;
        min-height: 48px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 0.75rem 1.25rem !important;
        border-radius: 12px !important;
    }
    
    /* Mobilde slider noktalarını saydam yap */
    .swiper-pagination {
        bottom: 20px !important;
        z-index: 5 !important;
    }
    
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.4) !important;
        opacity: 0.6 !important;
        width: 8px !important;
        height: 8px !important;
    }
    
    .swiper-pagination-bullet-active {
        background: rgba(255, 255, 255, 0.8) !important;
        opacity: 1 !important;
    }
    
    /* Swiper arrow buttons - mobilde gizle */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için ekstra optimizasyon */
    .banner-content {
        top: 35% !important;
        width: 95% !important;
        max-width: 320px !important;
        padding: 1.25rem !important;
    }
    
    .banner-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
        margin-bottom: 0.5rem !important;
    }
    
    .banner-subtitle {
        font-size: clamp(0.85rem, 4vw, 1rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .banner-cta .btn-ultra {
        max-width: 220px !important;
        font-size: 0.9rem !important;
        min-height: 46px !important;
    }
    
    /* 480px'te slider noktalarını daha küçük yap */
    .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Landscape mode mobil için özel ayarlar */
@media (max-width: 768px) and (orientation: landscape) {
    .ultra-banner-slider {
        height: 100vh !important;
    }
    
    .banner-content {
        top: 35% !important;
        max-width: 400px !important;
    }
} 