/* Gallery Page */
.san-gallery-section {
    background-color: #fdfaee;
    padding: 50px 20px;
    text-align: center;
}

.san-gallery-section h2 {
    font-size: 2.2rem;
    color: #7f0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.san-gallery-section p.sub-heading {
    font-size: 1rem;
    color: #444;
    margin-bottom: 40px;
}

.san-gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

@media (min-width: 768px) {
    .san-gallery-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.san-gallery-item {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.san-gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.san-gallery-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hrbm-time-slot.hrbm-booked {
    background-color: #e8f5e9;
    color: #2e7d32;
    cursor: not-allowed;
    border-color: #81c784;
    opacity: 0.7;
}

.hrbm-time-slot.hrbm-available {
    background-color: #ffffff;
    cursor: pointer;
}

.hrbm-time-slot.hrbm-available:hover {
    background-color: #e3f2fd;
}
