    /* Custom styles for Mountain Vibes KAVA Lounge */
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }
    ::-webkit-scrollbar-thumb {
        background: #0d7377;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #0a5c5f;
    }
    
    /* Selection color */
    ::selection {
        background: #0d7377;
        color: white;
    }
    
    /* Navbar transition */
    #navbar {
        transition: background-color 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
    }
    
    #navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Nav links */
    .nav-link {
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #0d7377;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    /* Mobile menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
    
    /* Mobile menu links animation */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    
    #mobile-menu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
    
    /* Menu lines animation */
    .menu-line {
        transition: all 0.3s ease;
    }
    
    #menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    #menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 24px;
    }
    
    /* Reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger children */
    .reveal-stagger > * {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
    .reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
    .reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
    .reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
    .reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
    .reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }
    
    .reveal-stagger.revealed > * {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Parallax subtle effect for hero */
    #hero {
        will-change: transform;
    }
    
    /* Image hover zoom */
    .img-zoom {
        overflow: hidden;
    }
    
    .img-zoom img {
        transition: transform 0.7s ease;
    }
    
    .img-zoom:hover img {
        transform: scale(1.05);
    }
    
    /* Button focus states */
    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #0d7377;
        outline-offset: 2px;
    }
    
    /* Form transitions */
    input, textarea {
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Print styles */
    @media print {
        #navbar, #mobile-menu, #contact-form {
            display: none;
        }
        body {
            background: white;
            color: black;
        }
    }
