/* Modern Home Slider Stilleri */

.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

/* Slide Link Stili */
.slide-link {
    cursor: pointer;
    text-decoration: none;
}

/* Slide Image Stili */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 3;
}

/* Slide İçerik - Sol Alt Köşe */
.slide-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 4;
    text-align: left;
    max-width: 600px;
}

.slide-title {
    font-family: 'BrandonGrotesque-Regular', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-item.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Bullet Navigasyon */
.slider-bullets {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.bullet.active {
    background: #7C634B;
    border-color: #7C634B;
    width: 14px;
    height: 14px;
}

.bullet.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(124, 99, 75, 0.3);
    border-radius: 50%;
}

/* Sosyal Medya Linkleri */
.social-media-vertical {
    position: absolute;
    right: 30px;
    bottom: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #7C634B;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #7C634B;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(124, 99, 75, 0.4);
}

/* Ok Navigasyon (Opsiyonel) */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C634B;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #7C634B;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
    left: 30px;
}

.slider-nav-next {
    right: 30px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .modern-hero-slider {
        height: 70vh;
    }

    .slide-content {
        bottom: 60px;
        left: 20px;
        max-width: 80%;
    }

    .slide-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .slider-bullets {
        bottom: 30px;
        gap: 10px;
    }

    .bullet {
        width: 10px;
        height: 10px;
    }

    .bullet.active {
        width: 12px;
        height: 12px;
    }

    .social-media-vertical {
        right: 15px;
        bottom: 30px;
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-nav-prev {
        left: 15px;
    }

    .slider-nav-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modern-hero-slider {
        height: 60vh;
    }

    .slide-content {
        bottom: 50px;
        left: 15px;
    }

    .slide-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Loading Animasyonu */
.slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.slider-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(124, 99, 75, 0.2);
    border-top-color: #7C634B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
