/* MARC Estacionamiento - Main Stylesheet */

/* Material Symbols Font Settings */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass Effect Headers */
.glass-header {
    background: rgba(244, 251, 240, 0.8);
    backdrop-filter: blur(12px);
}

.glass-nav {
    background: rgba(244, 251, 240, 0.8);
    backdrop-filter: blur(12px);
}

/* Base Body Styles */
body {
    background-color: #f4fbf0;
    color: #171d17;
    font-family: 'Inter', sans-serif;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* HTMX Indicators */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline;
}

.htmx-request.htmx-indicator {
    display: inline;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #e9f0e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #bdcaba;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6e7a6c;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus Styles */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 107, 43, 0.2);
}

/* Transition Utilities */
.transition-base {
    transition: all 0.2s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}
