/* Mobile Hero Styles */
@media (min-width: 769px) {
    .mobile-hero {
        display: none;
    }
}

/* Mobil görünümde banner içerik padding'i */
@media (max-width: 768px) {
    .hero-slider .banner-content {
        padding: 15px !important;
    }
}

/* Mevcut konum sınıflarını koru */
.position-top-left .banner-content { top: 0; left: 0; }
.position-top-center .banner-content { top: 0; left: 50%; transform: translateX(-50%); }
.position-top-right .banner-content { top: 0; right: 0; }
.position-center-left .banner-content { top: 50%; left: 0; transform: translateY(-50%); }
.position-center-center .banner-content { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
}
.position-center-right .banner-content { top: 50%; right: 0; transform: translateY(-50%); }
.position-bottom-left .banner-content { bottom: 0; left: 0; }
.position-bottom-center .banner-content { bottom: 0; left: 50%; transform: translateX(-50%); }
.position-bottom-right .banner-content { bottom: 0; right: 0; }

.hero-slider {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.hero-slider .hero-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider .hero-banner.active {
    opacity: 1;
}

/* Hero başlıkları için sabit beyaz renk */
.hero-slider .hero-banner h1,
.hero-slider .hero-banner h2,
.hero-slider .hero-banner h3,
.hero-slider .hero-banner h4,
.hero-slider .hero-banner h5,
.hero-slider .hero-banner h6 {
    color: #ffffff !important; /* Başlıklar için sabit beyaz renk */
}

/* Slider Navigation - Basit ve net stiller */
.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

.slider-dot {
    width: 16px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    background: var(--white);
} 