/* Room Carousel Styles */
.rooms-carousel-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    padding: 0 15px;
}

.rooms-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 10px;
    -ms-overflow-style: none;  /* Hide scrollbar IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.rooms-carousel::-webkit-scrollbar {
    display: none;
}

/* Scroll arrow styles moved to room-navigation-fix.css */

.view-all-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Duplicate scroll arrow styles removed - see room-navigation-fix.css */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    opacity: 0.8;
    pointer-events: auto;
}

.scroll-arrow:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 1;
}

.view-all-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-rooms-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--primary-color), #00103a);
    color: var(--light-text);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 20, 64, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-rooms-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.view-all-rooms-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 20, 64, 0.4);
    border-color: var(--secondary-color);
}

.view-all-rooms-btn:hover::before {
    opacity: 0.2;
}

.view-all-rooms-btn i {
    transition: transform 0.3s ease;
}

.view-all-rooms-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Scroll arrow styles moved to room-navigation-fix.css */
    
    .view-all-rooms-btn {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .view-all-rooms-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
