/* site-custom.css - Müşteri Yüzü Premium Tasarım */
:root {
    --primary-color: #05a0d4;
    --primary-dark: #037ba3;
    --primary-light: #e0f6fc;
    --secondary-color: #1e293b;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* SİHİRLİ DOKUNUŞ: Bootstrap container'ından çıkıp ekranı %100 kaplar */


/* Yükseklik 40vh ve responsive resim oturması */
.hero-slider-img {
    height: 40vh;
    width: 100%;
    object-fit: cover; /* Resmi sündürmez, oranını koruyarak keser */
}

/* Siyahlatma Efekti */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.carousel-caption {
    top: 0;
    bottom: 0;
    z-index: 2;
}

/* --- YENİ EKLENEN: NOKTALARI SAĞ ALTA ALMA --- */
.custom-indicators {
    position: absolute;
    right: 30px; /* Sağdan boşluk */
    bottom: 20px; /* Alttan boşluk */
    left: auto; /* Bootstrap'in ortalama özelliğini iptal et */
    margin: 0;
    justify-content: flex-end;
    gap: 8px; /* Noktalar arası boşluk */
    z-index: 3;
}

    /* Noktaların estetik dairesel tasarımı */
    .custom-indicators button {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background-color: rgba(255, 255, 255, 0.4) !important;
        border: 2px solid transparent !important;
        transition: all 0.3s ease !important;
        padding: 0 !important;
    }

        /* Aktif (Şu anki) resmin noktası */
        .custom-indicators button.active {
            background-color: #fff !important;
            transform: scale(1.3);
            border: 2px solid #05a0d4 !important; /* Seçili olanın etrafına tema renginle hafif çerçeve */
        }

/* Animasyonlar */
.slider-title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    animation: fadeInDown 1s ease-out;
}

.slider-subtitle {
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-fallback {
    height: 40vh;
    background: url('/images/mavinoktalogo.png') center/cover no-repeat;
    background-color: #0f172a;
    position: relative;
}

    .hero-fallback .z-index-1 {
        z-index: 2;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
