/* Variabili CSS */
:root {
    --giallo: #FFD700;
    --rosso: #8B0000;
    --granata: #800020;
    --testo-scuro: #333;
    --testo-chiaro: #fff;
    --sfondo-chiaro: #f8f9fa;
}

/* Reset e stili base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    color: var(--testo-scuro);
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--rosso);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--testo-chiaro);
    text-decoration: none;
}

.logo i {
    font-size: 2.5rem;
    color: var(--giallo);
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    color: var(--testo-chiaro);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu a:hover,
.menu a.active {
    color: var(--giallo);
}

/* Sezioni */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--rosso);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--giallo);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--rosso);
    color: var(--testo-chiaro);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--giallo);
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--testo-chiaro);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--giallo);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu {
        flex-direction: column;
        text-align: center;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* ========== STILE PAGINA DOVE SIAMO ========== */

/* Hero Section */
.hero-dove-siamo {
    background: linear-gradient(135deg, var(--rosso) 0%, var(--granata) 100%);
    color: var(--testo-chiaro);
    padding: 100px 0;
    text-align: center;
}

.hero-dove-siamo h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-dove-siamo p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Sede Section */
.sede-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sede-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#map {
    height: 100%;
    width: 100%;
}

.sede-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--giallo);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--rosso);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    font-size: 1rem;
}

/* Orari Section */
.orari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.orario-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.orario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.orario-card h3 {
    color: var(--rosso);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.orario-card .fa-clock {
    color: var(--giallo);
    margin-right: 10px;
}

.orario-card .note {
    font-size: 0.9rem;
    color: var(--granata);
    margin-top: 10px;
    font-style: italic;
}

.orari-note {
    background: var(--granata);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.orari-note i {
    color: var(--giallo);
    margin-right: 10px;
}

/* Contatti Section */
.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contatti-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--rosso);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--giallo);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contatti-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-large {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card-large i {
    font-size: 2.5rem;
    color: var(--giallo);
    margin-bottom: 20px;
}

.info-card-large h3 {
    color: var(--rosso);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-card-large ul {
    list-style: none;
}

.info-card-large ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.info-card-large ul li i {
    color: var(--granata);
    margin-right: 10px;
    font-size: 1rem;
}

.eventi-list {
    margin-top: 20px;
}

.evento-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.evento-item:last-child {
    border-bottom: none;
}

.evento-data {
    background: var(--giallo);
    color: var(--rosso);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.evento-dettagli h4 {
    color: var(--rosso);
    margin-bottom: 5px;
}

.evento-dettagli p {
    color: #666;
    font-size: 0.9rem;
}

/* Raggiungici Section */
.trasporti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trasporto-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.trasporto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.trasporto-card i {
    font-size: 3rem;
    color: var(--giallo);
    margin-bottom: 20px;
}

.trasporto-card h3 {
    color: var(--rosso);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trasporto-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.trasporto-card ul {
    list-style: none;
    text-align: left;
}

.trasporto-card ul li {
    margin-bottom: 8px;
    color: #666;
}

.route-info {
    background: var(--sfondo-chiaro);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--granata);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-dove-siamo h1 {
        font-size: 2.5rem;
    }
    
    .sede-content,
    .contatti-content {
        grid-template-columns: 1fr;
    }
    
    .sede-info {
        grid-template-columns: 1fr;
    }
    
    .orari-grid {
        grid-template-columns: 1fr;
    }
    
    .trasporti-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== STILE PAGINA SHOP ========== */

/* Hero Section */
.hero-shop {
    background: linear-gradient(135deg, var(--rosso) 0%, var(--granata) 100%);
    color: var(--testo-chiaro);
    padding: 100px 0;
    text-align: center;
}

.hero-shop h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-shop p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Filtri Section */
.filtri-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.filtro-categorie {
    display: flex;
    gap: 15px;
}

.filtro-btn {
    padding: 10px 20px;
    border: 2px solid #eee;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: var(--rosso);
    color: white;
    border-color: var(--rosso);
}

.ricerca {
    position: relative;
    width: 300px;
}

.ricerca input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.ricerca input:focus {
    outline: none;
    border-color: var(--giallo);
}

.ricerca i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Prodotti Grid */
.prodotti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prodotto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.prodotto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.prodotto-immagine {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.prodotto-immagine img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.prodotto-card:hover .prodotto-immagine img {
    transform: scale(1.1);
}

.badge-nuovo,
.badge-offer {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.badge-nuovo {
    background: var(--giallo);
    color: var(--rosso);
}

.badge-offer {
    background: var(--granata);
}

.prodotto-info {
    padding: 25px;
}

.prodotto-info h3 {
    color: var(--rosso);
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.prodotto-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.prodotto-prezzo {
    margin-bottom: 20px;
}

.prezzo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--rosso);
}

.prezzo-scontato {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--granata);
}

.prezzo-originale {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-acquista {
    width: 100%;
    padding: 15px;
    background: var(--giallo);
    color: var(--rosso);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-acquista:hover {
    background: var(--rosso);
    color: white;
}

.btn-acquista i {
    margin-right: 8px;
}

/* Carrello Sidebar */
.carrello-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.carrello-sidebar.aperto {
    right: 0;
}

.carrello-header {
    padding: 20px;
    background: var(--rosso);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrello-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chiudi-carrello {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.carrello-contenuto {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.carrello-vuoto {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.carrello-vuoto i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

.carrello-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.carrello-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.carrello-item-info {
    flex: 1;
}

.carrello-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--rosso);
}

.carrello-item-prezzo {
    font-size: 0.9rem;
    color: #666;
}

.carrello-item-quantita {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quantita {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-quantita:hover {
    background: var(--rosso);
    color: white;
    border-color: var(--rosso);
}

.rimuovi-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.rimuovi-item:hover {
    color: var(--rosso);
}

.carrello-totale {
    padding: 20px;
    background: var(--sfondo-chiaro);
    border-top: 1px solid #eee;
}

.totale-riga {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.totale-riga.finale {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--rosso);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: var(--giallo);
    color: var(--rosso);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-checkout:hover {
    background: var(--rosso);
    color: white;
}

/* Carrello Flottante */
.carrello-flottante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--rosso);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.carrello-flottante:hover {
    transform: scale(1.1);
    background: var(--granata);
}

.carrello-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--giallo);
    color: var(--rosso);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Notifica */
.notifica {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--giallo);
    color: var(--rosso);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1002;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-shop h1 {
        font-size: 2.5rem;
    }
    
    .filtri-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .ricerca {
        width: 100%;
    }
    
    .prodotti-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .carrello-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .carrello-flottante {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carrello-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}
/* ========== STILE PAGINA GALLERIE ========== */

/* Hero Section */
.hero-gallerie {
    background: linear-gradient(135deg, var(--rosso) 0%, var(--granata) 100%);
    color: var(--testo-chiaro);
    padding: 100px 0;
    text-align: center;
}

.hero-gallerie h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-gallerie p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Filtri Galleria */
.filtri-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filtro-categorie {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filtro-anno select {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    min-width: 150px;
}

/* Video in Evidenza */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--giallo);
    color: var(--rosso);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.play-btn:hover {
    background: var(--rosso);
    color: white;
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--rosso);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Galleria Fotografica */
.galleria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.galleria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 250px;
}

.galleria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.galleria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galleria-item:hover img {
    transform: scale(1.1);
}

.galleria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.galleria-item:hover .galleria-overlay {
    opacity: 1;
}

.galleria-info h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.galleria-info p {
    color: var(--giallo);
    margin: 0;
    font-size: 0.9rem;
}

.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    color: var(--rosso);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    opacity: 0;
}

.galleria-item:hover .zoom-btn {
    opacity: 1;
}

.zoom-btn:hover {
    background: var(--giallo);
    transform: scale(1.1);
}

/* Carica Altro */
.carica-altro {
    text-align: center;
    margin-top: 50px;
}

.carica-altro .btn {
    background: var(--granata);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carica-altro .btn:hover {
    background: var(--rosso);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-gallerie h1 {
        font-size: 2.5rem;
    }
    
    .filtri-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .filtro-categorie {
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .galleria-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .video-modal .modal-content {
        width: 95%;
        height: 60vh;
        margin: 20% auto;
    }
}
}