/* Hotel Intro Slider Styles */
.hotel-intro-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

.hotel-intro-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-intro-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1; /* Always visible to maintain render state */
    visibility: visible;
    transition: none;
    z-index: 1; /* Default background layer */
}

.hotel-intro-slide.active {
    z-index: 10; /* Bring to front */
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hotel-intro-slide.active .slide-background {
    transform: scale(1.1);
}

.slide-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.hotel-intro-slide .container {
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center vertically/horizontally in flex column */
    max-width: 800px;
    margin: 0 auto; /* Center horizontally in container */
    padding: 0 20px; /* Reduced vertical padding since we are centering */
    text-align: center; /* Center text inside elements */
}

.slide-subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 1;
}

.slide-title {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.slide-description {
    color: #f0f0f0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 1;
}

.slide-full-description {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    opacity: 1;
}

.slide-full-description p {
    margin-bottom: 10px;
}

/* Animation Classes */
.hotel-intro-slide.active .animate-fade-in-up {
    animation: none;
}

.hotel-intro-slide.active .animate-fade-in-up[data-delay="0.2s"] {
    animation-delay: 0.2s;
}

.hotel-intro-slide.active .animate-fade-in-up[data-delay="0.4s"] {
    animation-delay: 0.4s;
}

.hotel-intro-slide.active .animate-fade-in-up[data-delay="0.6s"] {
    animation-delay: 0.6s;
}

.hotel-intro-slide.active .animate-fade-in-up[data-delay="0.8s"] {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
    opacity: 1;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: #ffd700;
    border-color: #ffd700;
    width: 40px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-title {
        font-size: 42px;
    }
    
    .slide-description {
        font-size: 18px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        max-width: 100%;
        padding: 20px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-full-description {
        font-size: 14px;
        display: none; /* Hide full description on mobile */
    }
    
    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-indicator.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
}
