    /* Custom styles for Compass Cafe */

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

    /* Selection color */
    ::selection {
        background-color: rgba(231, 111, 81, 0.3);
        color: #fff;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1A1A1A;
    }
    ::-webkit-scrollbar-thumb {
        background: #3D3D3D;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #E76F51;
    }

    /* Navbar transition */
    #navbar {
        transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    }
    #navbar.scrolled {
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(61, 61, 61, 0.3);
    }
    #navbar.scrolled .nav-link {
        color: #4E4E4E;
    }
    #navbar.scrolled .menu-line {
        background-color: #4E4E4E;
    }

    /* Hero animations */
    .hero-text {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.2s;
    }
    .hero-sub {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.5s;
    }
    .hero-cta {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.8s;
    }

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

    /* Reveal animations */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal-up {
        transform: translateY(40px);
    }
    .reveal-left {
        transform: translateX(-40px);
    }
    .reveal-right {
        transform: translateX(40px);
    }
    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Menu item hover effect */
    #menu .space-y-5 > div {
        border-bottom: 1px solid rgba(61, 61, 61, 0.3);
        padding-bottom: 12px;
    }
    #menu .space-y-5 > div:last-child {
        border-bottom: none;
    }

    /* Mobile menu */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }
    #mobile-menu.active .mobile-nav-link {
        animation: mobileLinkIn 0.4s ease forwards;
        opacity: 0;
    }
    #mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
    #mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
    #mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
    #mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }
    #mobile-menu.active .mobile-nav-link:nth-child(5) { animation-delay: 0.25s; }

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

    /* Mobile menu link initial state */
    .mobile-nav-link {
        transform: translateY(10px);
    }

    /* Hamburger animation */
    #mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu-btn.active .menu-line:nth-child(3) {
        width: 24px;
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Image hover zoom */
    .aspect-\[4\/5\] img,
    .aspect-\[3\/4\] img,
    .aspect-square img,
    .aspect-\[21\/9\] img {
        transition: transform 0.6s ease;
    }
    .aspect-\[4\/5\]:hover img,
    .aspect-\[3\/4\]:hover img,
    .aspect-square:hover img {
        transform: scale(1.05);
    }

    /* 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='%234E4E4E' 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 1rem center;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Focus visible for accessibility */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 2px solid #E76F51;
        outline-offset: 2px;
    }

    /* 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;
        }
    }

    /* Large screen adjustments */
    @media (min-width: 1024px) {
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #E76F51;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
    }

    /* Gradient text utility */
    .text-gradient-coral {
        background: linear-gradient(135deg, #E76F51, #F4845F);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
