/* ============================================================
   ANASAYFA — HERO CAROUSEL
   Sadece index.php için özel stiller
   ============================================================ */

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-slide {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 860px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(28, 35, 64, 0.72) 0%,
        rgba(28, 35, 64, 0.45) 55%,
        rgba(28, 35, 64, 0.20) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}
.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.hero-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-slogan {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    border-left: 3px solid #C0392B;
    padding-left: 1rem;
    margin-bottom: 2rem;
    line-height: 1.55;
}
.hero-btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-btn-primary {
    background-color: #C0392B;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hero-btn-primary:hover {
    background-color: #96281B;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
    transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(192, 57, 43, 0.7);
}
.carousel-indicators { bottom: 1.5rem; }
.carousel-indicators [data-bs-target] {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}
.carousel-indicators .active {
    background-color: #FFFFFF;
    width: 40px;
}

/* ============================================================
   RESPONSIVE — Anasayfaya Özel
   ============================================================ */
@media (max-width: 767.98px) {
    .hero-slide {
        height: 75vh;
        min-height: 480px;
        max-height: 640px;
    }
    .hero-content { max-width: 100%; }
    .hero-btn-group { flex-direction: column; gap: 0.75rem; }
    .hero-btn-group .btn { text-align: center; }
}

@media (max-width: 575.98px) {
    .hero-label { font-size: 0.65rem; }
    .carousel-control-prev,
    .carousel-control-next { display: none; }
}
