/* Stili personalizzati per il sito del matrimonio Serena & Davide */

/* Overlay cinematografico */
.cinematic-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
}

/* Texture a grana */
.grain-texture {
    background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuAaBh6yNi1QatsG2dLyaqb-srgSCzo0pgN1fx3NXjeCTGVxF5jo0kzH5nvBFg9SfzxC39wRjn84FaWBDAVIO9Rt0n1kY8MoOmNakWsjdLC2a4e15tDpeZFV1BEo52_3OlIoBVI7jl2KKG_g_nALCv8FGhAyVsriUMijoMc0owBnZH74jqbGOapSLFvxxaFF2oI7S38k4ymWkk0x8W6gva_0HV2fxmo_pn5aM_IoG2RmfBYJpwjVwp7Q5W34EBdoNkG2gSNKmVkW3hw);
    opacity: 0.15;
    pointer-events: none;
}

/* Filtro mappa */
.map-filter {
    filter: grayscale(100%) sepia(10%) contrast(95%);
}

/* Animazione fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Scrollbar personalizzata */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Focus states per accessibilità */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Transizioni fluide */
a,
button {
    transition: all 0.3s ease;
}
