:root {
    --primary-50: #f0fdf4;
    --primary-100: #dcfce7;
    --primary-200: #bbf7d0;
    --primary-300: #86efac;
    --primary-400: #4ade80;
    --primary-500: #22c55e; /* Green */
    --primary-600: #16a34a;
    --primary-700: #15803d;
    --primary-800: #166534;
    --primary-900: #14532d;
    --primary-950: #0f2d1d;
    --primary-color: #22c55e; /* Green */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
    background-color: white; /* Ensure background is solid when fixed */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 80px; /* Adjust based on header height to prevent content from being hidden */
}

.carousel-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer {
    background-color: #1f2937; /* stone-800 */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-700);
}

.lg-hidden {
    display: none;
}

/* Estilos para el menú de hamburguesa */
@media (max-width: 768px) {
    .md\:hidden {
        display: block;
    }
    .hidden.md\:flex {
        display: none;
    }
    #mobile-menu {
        transition: transform 0.3s ease-in-out;
    }
    #mobile-menu.open {
        
    }
    #mobile-menu-overlay {
        display: none;
    }
    #mobile-menu-overlay.open {
        display: block;
    }
}