/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

/* Stagger Children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}