/* Global Styles for Formación Carretillas */
:root {
    --primary: #001e40;
    --secondary: #fdc003;
    --on-secondary: #6c5000;
}

html {
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Burger menu overlay animation */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Shared Header/Footer tweaks */
nav {
    border-bottom: 1px solid rgba(0, 30, 64, 0.05);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
