﻿.hero-slider {
    position: relative;
    height: 75vh !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

    .hero-slider .media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        display: none;
    }

        .hero-slider .media.active {
            display: block;
        }

    .hero-slider .hero-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        padding: 20px;
    }

    .hero-slider::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

/* Dot navigasyon */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

    .hero-dots button {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .hero-dots button.active {
            background: #fff;
        }
