    /* ===== Custom Styles for Alpine Rose B&B ===== */

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

    /* Selection color */
    ::selection {
        background: #F5D5E5;
        color: #7B2D3B;
    }

    /* ===== Navbar Scroll State ===== */
    #navbar.scrolled {
        background: rgba(253, 249, 246, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    /* ===== Hero Animations ===== */
    .hero-badge {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.2s;
    }

    .hero-title {
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.5s;
    }

    .hero-subtitle {
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.8s;
    }

    .hero-ctas {
        opacity: 0;
        animation: fadeUp 1s ease forwards 1.1s;
    }

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

    /* ===== Scroll Reveal Animations ===== */
    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }

    /* ===== Scroll Gallery ===== */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .animate-scroll {
        animation: scroll 40s linear infinite;
    }

    .animate-scroll:hover {
        animation-play-state: paused;
    }

    /* ===== Mobile Menu ===== */
    .mobile-menu-open #mobile-menu {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-open .line1 {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-open .line2 {
        opacity: 0;
    }

    .mobile-menu-open .line3 {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.5rem;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-menu-open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu-open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu-open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu-open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu-open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

    /* ===== Nav Links Hover Effect ===== */
    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #7B2D3B;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* ===== Form Input Focus ===== */
    input:focus,
    textarea:focus,
    select:focus {
        box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
    }

    /* ===== Subtle Gradient Backgrounds ===== */
    .gradient-burgundy {
        background: linear-gradient(135deg, #7B2D3B 0%, #4e1e28 100%);
    }

    /* ===== Image Hover Zoom ===== */
    .group img {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ===== Responsive Typography ===== */
    @media (max-width: 640px) {
        .font-serif {
            line-height: 1.2;
        }
    }

    /* ===== Reduced Motion ===== */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }

        .reveal-up,
        .reveal-left,
        .reveal-right {
            opacity: 1;
            transform: none;
        }

        .animate-scroll {
            animation: none;
        }
    }
