/* Custom Styles for The Funnel Cake House */

/* Base Typography adjustments */
body {
    background-color: #020617;
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle Glow Animation */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.3);
    }
}

/* Fade In Up Animation */
@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;
}

/* Navbar Scrolled State */
.nav-scrolled {
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Image Hover Zoom */
img {
    transition: transform 0.5s ease;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
