.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #b89a6c, transparent);
    position: absolute;
    left: 50%;
    top: 100%;
}

#about,
#rooms,
#amenities,
#testimonials,
#contact,
footer {
    zoom: 0.8;
}

@media (max-width: 768px) {
    #about,
    #rooms,
    #amenities,
    #testimonials,
    #contact,
    footer {
        zoom: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: fit-content;
    animation: marquee 60s linear infinite !important;
}

.ticker-mask {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-glow {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 34px rgba(255, 255, 255, 0.4);
}

/* Marquee Container Styles */
.marquee-container {
    position: relative;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 20px 0;
}

@media (max-width: 768px) {
    .marquee-container {
        padding: 15px 0;
    }
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content:hover {
    /* animation-play-state: paused; */
}

.animate-marquee {
    animation-play-state: running !important;
}

/* Ensure marquee continues when modal is open */
body:has(#amenityModal:not(.hidden)) .marquee-content {
    animation-play-state: running !important;
}

body:has(#amenityModal:not(.hidden)) .animate-marquee {
    animation-play-state: running !important;
}

/* Amenity Card Styles */
.amenity-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: scale(1.02);
}

.amenity-card .aspect-video {
    position: relative;
    overflow: hidden;
}

.amenity-card .aspect-video img {
    transition: transform 0.5s ease;
}

.amenity-card:hover .aspect-video img {
    transform: scale(1.1);
}

.amenity-card .absolute.inset-0 {
    transition: opacity 0.3s ease;
}

.amenity-card:hover .absolute.inset-0 {
    opacity: 1;
}
