.slider-container {
    height: 100px
}

/* Smooth horizontal scrolling for touch and mouse */
.gallery-container {
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling for iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera */
/* Layout Constraints */
#gallery {
    background-color: #022b59;
}

/* Ensure the hero image maintains a professional look */
#hero-img {
    transition: opacity 0.3s ease-in-out;
}

/* Thumbnail Styling */
.thumb-item {
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumb-item:hover {
    border-color: white;
    transform: scale(1.02);
}

.thumb-item.active {
    border-color: #ffcc00; /* Subtle highlight for the active selection */
    opacity: 1 !important;
}

/* Responsive adjustment: force a height on mobile if the grid gets too long */
@media (max-width: 768px) {
    .thumbnail-grid {
        max-height: 300px;
        overflow-y: auto;
    }
}


/* Ensure the hero section allows the overlap */
.hero-wrapper {
    position: relative;
    z-index: 10;
}

/* Booking card styling */
.booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form input focus state for a premium feel */
input:focus, select:focus {
    border-color: #022b59;
    outline: none;
}

/* Ensure the layout holds its own on all screens */
@media (max-width: 768px) {
    .booking-card {
        margin-top: -50px; /* Smaller overlap for mobile */
        padding: 1.5rem;
    }
}