/* Custom font families */
.font-cormorant {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-lato {
    font-family: 'Lato', system-ui, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Navbar scroll state */
nav.scrolled {
    background: rgba(15, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 90, 0.1);
    padding-top: 0;
    padding-bottom: 0;
}

nav.scrolled .py-5 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Active nav link */
nav a.active {
    color: #d4ab5a;
}

/* Custom selection color */
::selection {
    background: rgba(200, 164, 90, 0.3);
    color: #fff;
}

/* Subtle hover lift for room cards */
.group:hover img {
    transform: scale(1.05);
}

/* Map filter override for dark theme */
iframe[style*="invert"] {
    border-radius: 0;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 1px rgba(200, 164, 90, 0.3);
}

/* Button press effect */
button:active {
    transform: scale(0.98);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
    .group:hover img {
        transform: none;
    }
}
