/* Shared styles for Seetizen - Sentinelle della Città */

body {
    background-color: #edefdf;
    color: #374151;
    -webkit-font-smoothing: antialiased;
}

/* Flat Card Style */
.glass-card {
    background: #ffffff;
    border: 1.5px solid #044732;
    box-shadow: 4px 4px 0px 0px #044732;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px #87bd2f;
}

/* Scrollbar Personalizzata */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #edefdf;
}
::-webkit-scrollbar-thumb {
    background: #317c33;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #044732;
}

/* Animazioni di entrata */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Custom brand overrides for common components (like dynamically loaded footer) */
.bg-arancio {
    background-color: #e0833d !important;
}
.border-crema\/30 {
    border-color: rgba(237, 239, 223, 0.3) !important;
}

/* Remove focus outlines and shadows from mobile header buttons and menu links */
#menu-toggle-btn,
#menu-toggle-btn:focus,
#menu-toggle-btn:active,
#menu-toggle-btn:focus-visible,
.menu-link:focus,
.menu-link:active,
.menu-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

