﻿/* Görsel büyüklüğü düzenleme */
/* Görsel ayarları */
.home-slider-single-item {
    width: 100%;
    height: 100vh;
    background-size: cover !important;
    background-position: center 68% !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-slider-single-item::before {
        opacity: 0.2 !important; /* Hafif overlay */
    }

/* 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;
}

/* Animasyonlar */

/* 🔹 Slider başlığı (ZCN Savunma) */
.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;
    animation: fadeDown 1.2s ease-out forwards;
}
