/* ============================================
   La Louiseanne Guesthouse — Custom Styles
   ============================================ */

/* Base overrides */
body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Gold line animation for hero */
@keyframes scrollDot {
    0% { top: -16px; }
    100% { top: 48px; }
}
.animate-scroll-dot {
    animation: scrollDot 1.5s ease-in-out infinite;
}

/* Navigation transitions */
#navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(200, 164, 94, 0.15);
}

/* Nav link underline on hover */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C8A45E;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Mobile links */
.mobile-link {
    position: relative;
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to top button */
.back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Form select arrow */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A45E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Date input styling for dark theme */
input[type="date"] {
    color-scheme: dark;
}

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

/* Print styles */
@media print {
    nav, #back-to-top, .fade-in-up { display: none; }
    body { background: white; color: black; }
}
