/* Custom styles for Elm and Kenner */

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

/* Hero animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Room cards */
.room-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.5s ease;
}

.room-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About section */
.about-image {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideRight 0.8s ease forwards 0.3s;
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeft 0.8s ease forwards 0.5s;
}

@keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Navbar scroll state */
.nav-scrolled {
    background: rgba(253, 251, 247, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(4, 120, 87, 0.08);
}

.nav-scrolled .nav-link {
    color: #374151 !important;
}

.nav-scrolled .font-serif {
    color: #044A38 !important;
}

/* Mobile menu */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: all !important;
}

body.menu-open {
    overflow: hidden;
}

/* Map hover */
.map-container:hover {
    box-shadow: 0 25px 50px -12px rgba(4, 120, 87, 0.15);
    transition: box-shadow 0.4s ease;
}

/* Subtle hover on links */
a {
    text-decoration: none;
}

/* Selection color */
::selection {
    background: #047857;
    color: white;
}

/* Focus styles */
input:focus, textarea:focus {
    outline: none;
}
