/* Custom Styles for Captain Daves */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Mobile Menu Transitions */
.mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* Staggered animation for mobile menu items */
#mobile-menu.show .mobile-link:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.show .mobile-link:nth-child(2) { transition-delay: 0.2s; }
#mobile-menu.show .mobile-link:nth-child(3) { transition-delay: 0.3s; }
#mobile-menu.show .mobile-link:nth-child(4) { transition-delay: 0.4s; }

/* Subtle hover effects for images */
img {
    transition: transform 0.3s ease;
}

/* Navbar blur effect when scrolled */
.nav-blur {
    background: rgba(17, 46, 48, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Typography refinements */
.font-serif {
    line-height: 1.1;
}
