﻿/* Flickity container'ları */
.home-slider-area {
    width: 100%;
    overflow: hidden;
}

.home-slider {
    width: 100%;
}

/* Flickity viewport - Tam yükseklik */
.flickity-viewport {
    width: 100% !important;
    height: 100vh !important;
    min-height: 600px !important;
}

/* Flickity slider */
.flickity-slider {
    height: 100% !important;
}

/* Slider item */
.home-slider-single-item {
    position: relative;
    width: 100% !important;
    height: 100vh !important;
    min-height: 600px !important;
    overflow: hidden;
}

/* Arka plan görseli */
.slider-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 0;
}

/* Overlay (karartma) katmanı */
.home-slider-single-item[data-overlay-dark]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* İçerik container'ı */
.home-slider-single-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.home-slider-single-item .row {
    width: 100%;
}

/* Başlık ve açıklama stilleri */
.home-slider-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 58px;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.home-slider-description p {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Logo container - drone ile kasalar arası */
.logo-container {
    position: absolute;
    top: 48%; /* 55%'ten 48%'e düşürdük */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

/* Logo */
.slider-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    animation: fadeIn 1.5s ease-out;
    margin-bottom: 8px; /* Logo ile yazı arası mesafe */
}

/* Tagline - Zenith Confidence Nexus */
.brand-tagline {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0; /* margin-top'u sıfırla */
    margin-bottom: 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    animation: fadeUp 1.8s ease-out;
}
