@charset "utf-8";
/* CSS Document */

.text-gradient {
    background: linear-gradient(45deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-event {
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff; /* Effetto Neumorphic */
}
/* La Navbar deve dominare la scena */
.navbar-glass {
    z-index: 1050 !important; /* Standard Bootstrap per fixed-top */
    position: fixed;
    top: 0;
    width: 100%;
}

/* Il Banner Cookie deve stare in basso e non disturbare il menu */
.cookie-banner {
    z-index: 1040; /* Leggermente meno della navbar */
    position: fixed;
    bottom: 20px; /* Distanziamolo dal bordo per un effetto floating */
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Il Loader deve coprire tutto finché non scompare */
.loader-wrapper {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    padding-top: 80px; /* Regola in base all'altezza della tua navbar */
	font-family: 'Titillium Web', sans-serif !important;
}
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
        font-size: 0.85rem;
    }
}