/* assets/css/style.css - Custom Styles for Spa88 */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.bronze-gradient {
    background: linear-gradient(135deg, #79542e 0%, #956c44 100%);
}

.hero-slide {
    will-change: transform, opacity;
}

/* Booking Modal Base */
.booking-modal {
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 28, 26, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.booking-modal.active .booking-content {
    transform: scale(1);
    opacity: 1;
}
