/* Slider Section Stilleri */
.slider-section {
    width: 100%;
    height: 100vh;
    margin-top: 0;
    position: relative;
}

.slider-container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
}

/* Sol Bölüm */
.slider-top {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.85);
}

/* Orta Bölüm */
.slider-middle {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
}


.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.85);
    z-index: 1;
}

/* Sağ Bölüm */
.slider-bottom {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .slider-top,
    .slider-bottom {
        display: none;
    }
    
    .slider-middle {
        flex: 1;
        width: 100%;
        height: 650px;
    }
    
    .slider-section {
        height: 650px;
        min-height: 650px;
        max-height: 650px;
    }
    
    .slider-container {
        height: 650px;
        min-height: 650px;
        max-height: 650px;
    }
    
    .main-content {
        height: 650px;
        min-height: 650px;
        max-height: 650px;
        overflow: hidden;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide .hero-image {
    filter: blur(0px);
    transition: filter 1s ease-in-out;
}

.slide:not(.active) .hero-image {
    filter: blur(5px);
}

.slide .hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    font-family: 'Nunito Sans', sans-serif;
}


.hero-title {
    font-size: 4rem;
    font-weight: 400;
    font-family: 'Rubik Dirt', cursive;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 170px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-top: 120px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        margin-top: 30px;
    }
    
    .btn-reservation {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-top: 100px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .btn-reservation {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .social-icons {
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.hero-buttons {
    margin-top: 50px;
}

.btn-reservation {
    display: inline-block;
    
    color: white;
    padding: 15px 35px;
    border-radius: 7px;
    text-decoration: none;
    font-family: 'Gosha Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
   
    border: none;
    cursor: pointer;
}

.btn-reservation:hover {
    background: #0288d1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 162, 234, 0.4);
    color: white;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #02a2ea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(2, 162, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Slider Overlay Stilleri */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 80%;
}

.slider-section .slider-overlay .slider-content .slider-title {
    font-size: 32px;
    font-weight: 800 !important;
    font-family: 'Futura XBlk BT', sans-serif !important;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 40px !important;
    letter-spacing: 0.5px;
}

.slider-section .slider-overlay .slider-content .slider-description {
    font-size: 16px !important;
    font-weight: 800 !important;
    font-family: 'Futura XBlk BT', sans-serif !important;
    line-height: 24px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Mobil uyumluluk - Slider overlay */
@media (max-width: 768px) {
    .slider-section .slider-overlay .slider-content .slider-title {
        font-size: 32px;
        line-height: 40px !important;
        margin-bottom: 10px;
        font-family: 'Futura XBlk BT', sans-serif !important;
    }
    
    .slider-section .slider-overlay .slider-content .slider-description {
        font-size: 16px !important;
        line-height: 24px !important;
        font-family: 'Futura XBlk BT', sans-serif !important;
    }
    
    .slider-content {
        max-width: 90%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .slider-section .slider-overlay .slider-content .slider-title {
        font-size: 32px;
        line-height: 40px !important;
        margin-bottom: 8px;
        font-family: 'Futura XBlk BT', sans-serif !important;
    }
    
    .slider-section .slider-overlay .slider-content .slider-description {
        font-size: 16px !important;
        line-height: 24px !important;
        font-family: 'Futura XBlk BT', sans-serif !important;
    }
    
    .slider-content {
        max-width: 95%;
        padding: 10px;
    }
}