/* ====================================================== */
/* MOBILE SLIDER - SADECE MOBİLDE */
/* ====================================================== */

/* Desktop'ta slider gizli, hero görünür */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* Mobilde slider görünür, hero gizli */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Slider Container */
    .mobile-slider {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    /* Slide */
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        display: flex;
        align-items: center; /* Ortada durur */
        padding-bottom: 0;
    }
    
    .slide.active {
        opacity: 1;
        z-index: 1;
    }
    
    /* Overlay - Daha koyu */
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* 0.4'ten 0.6'ya çıkardım */
        z-index: 1;
    }
    
    /* Slide Content */
    .slide-content {
        position: relative;
        z-index: 2;
        padding: 0 25px;
        width: 100%;
        color: white;
    }
    
    .slide-number {
        font-size: 100px;
        font-weight: 200;
        margin-bottom: 20px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.5); /* 0.3'ten 0.5'e çıkardım */
        letter-spacing: -5px;
    }
    
    .slide-title {
        font-size: 32px;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 20px;
        text-transform: none;
    }
    
    .slide-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Slide Controls */
    .slide-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .slide-btn {
        display: inline-block;
        padding: 14px 30px;
        border: 1px solid white;
        border-radius: 30px; /* Yumuşak kenarlar */
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.3s;
    }
    
    .slide-btn:hover {
        background-color: white;
        color: #8f7b72;
    }
    
    /* Arrow Buttons */
    .slide-arrows {
        display: flex;
        gap: 15px;
    }
    
    .arrow-btn {
        width: 50px;
        height: 50px;
        border: 1px solid white;
        border-radius: 50%; /* Yuvarlak butonlar */
        background: transparent;
        color: white;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .arrow-btn:hover {
        background-color: white;
        color: #8f7b72;
    }
    
    /* Footer gizle ana sayfada mobilde */
    body.home-page .detailed-footer {
        display: none !important;
    }
}