/* Hero Slider stilleri */
.hero-slider {
    margin: 30px 0 40px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 420px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    width: 100%;
    padding: 40px 40px 35px;
    color: white;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.slide-btn {
    background: var(--accent);
    border: none;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.slide-btn,
.slide-btn:link,
.slide-btn:visited,
.slide-btn:hover,
.slide-btn:active,
.slide-btn:focus,
.slide-btn.active {
    color: white;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-nav button {
    background: rgba(0,0,0,0.6);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 25px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 8px;
}

@media (max-width: 960px) {
    .slider-container {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .slider-container {
        height: 320px;
    }
    .slide-content h2 {
        font-size: 1.5rem;
    }
}