/* Custom Styles for PACmeLunch Landing Page */

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

/* Custom Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Gradient Background */
.bg-gradient-brand {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
}

/* Phone Mockup Shadow & Floating Animation */
.mockup-container {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Feature Card Hover Effect */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}
