/* =========================================
   SAGA | VARIABLES & PALETTE
   ========================================= */
:root {
    --saga-black: #0d0d0d;
    --saga-darker: #050505;
    --saga-white: #ffffff;
    --saga-red: #D90429; 
    
    --font-titoli: 'Roma Thin', 'Cinzel', serif;
    --font-testi: 'Alasassy Caps', 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--saga-black);
    color: var(--saga-white);
    font-family: var(--font-testi);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    line-height: 1.6;
    /* Evita lo "scroll elastico" ai bordi (bounce) su iOS */
    overscroll-behavior-y: none; 
}

/* =========================================
   HEADER & NAV
   ========================================= */
.saga-header {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo img.main-logo { height: 75px; width: auto; display: block; transition: transform 0.3s; }
.logo img.main-logo:hover { transform: scale(1.05); }

nav { display: flex; gap: 30px; align-items: center; }
nav a {
    text-decoration: none; color: var(--saga-white);
    font-weight: 600; text-transform: uppercase; font-size: 0.85rem;
    transition: color 0.3s ease; letter-spacing: 1px;
}
nav a:hover { color: var(--saga-red); }

.nav-socials { 
    display: flex; gap: 15px; margin: 0 10px; 
    border-left: 1px solid rgba(255,255,255,0.2); padding-left: 20px; align-items: center;
}
.nav-socials a {
    display: flex; justify-content: center; align-items: center;
    width: 42px; height: 42px; border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); text-decoration: none;
}
.nav-socials a svg { width: 22px; height: 22px; fill: var(--saga-white); display: block; transition: fill 0.3s; }
.nav-socials a:hover { background-color: rgba(217, 4, 41, 0.15); border-color: var(--saga-red); transform: scale(1.15); }
.nav-socials a:hover svg { fill: var(--saga-red); }

/* BOTTONI GENERICI */
.btn-red, .btn-red-outline, .btn-gold {
    padding: 10px 25px; border-radius: 50px; transition: all 0.3s ease; text-decoration: none;
    font-family: var(--font-testi); font-weight: 700; display: inline-block; cursor: pointer;
}
.btn-red { background-color: var(--saga-red); color: var(--saga-white); border: 2px solid var(--saga-red); }
.btn-red:hover { background-color: transparent; color: var(--saga-red); box-shadow: 0 5px 20px rgba(217, 4, 41, 0.5); }
.btn-red-outline { border: 2px solid var(--saga-red); color: var(--saga-white); background: transparent; }
.btn-red-outline:hover { background-color: var(--saga-red); }

.btn-gold { background-color: #FFD700; color: var(--saga-black); border: 2px solid #FFD700; }
.btn-gold:hover { background-color: transparent; color: #FFD700; box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); }

.btn-red-large {
    background-color: var(--saga-red); color: var(--saga-white);
    padding: 16px 40px; border-radius: 50px; font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
    display: inline-block; transition: all 0.3s ease; border: 2px solid var(--saga-red);
}
.btn-red-large:hover { background: transparent; color: var(--saga-red); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4); }
.full-width { width: 100%; box-sizing: border-box; text-align: center; }

/* =========================================
   HERO & BADGE 
   ========================================= */

.hero-content { max-width: 1100px; width: 100%; }.hero-standard {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; 
    padding: 140px 8% 60px 8%; 
    background: radial-gradient(circle at right, #1a0105 0%, var(--saga-black) 60%);
    box-sizing: border-box;
}
.hero-content { max-width: 1200px; width: 100%; margin: 0 auto; }

.hero-title-wrapper {
    display: flex; align-items: center; justify-content: flex-start;
    gap: 40px; margin-bottom: 20px; flex-wrap: nowrap; 
}
.hero-title-wrapper h1 { font-family: var(--font-titoli); font-size: 5rem; line-height: 1.1; margin-bottom: 0; flex-shrink: 1; }
.hero-title-wrapper h1 span { color: var(--saga-red); }

.hero-badge {
    width: 250px; height: auto; border-radius: 50%; flex-shrink: 0; 
    box-shadow: 0 5px 40px rgba(217, 4, 41, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

.hero-content p { font-size: 1.3rem; opacity: 0.8; max-width: 650px; margin-bottom: 40px; }

/* =========================================
   CARD ORIZZONTALI (Servizi)
   ========================================= */
.saga-section { padding: 100px 8%; box-sizing: border-box; }
.bg-darker { background-color: var(--saga-darker); }
.section-header { text-align: center; margin: 0 auto 50px auto; max-width: 1200px; }
.section-header h2 { font-family: var(--font-titoli); font-size: 3rem; color: var(--saga-red); text-transform: uppercase; }

.horizontal-accordion { display: flex; flex-direction: row; width: 100%; max-width: 1200px; margin: 0 auto; height: 500px; gap: 15px; }
.h-card {
    flex: 1; border-radius: 20px; position: relative; overflow: hidden;
    cursor: pointer; transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    background: linear-gradient(135deg, var(--saga-black) 0%, #3a0008 100%);
    border: 1px solid rgba(255,255,255,0.05);
}
.h-card:hover, .h-card.active { flex: 5; background: linear-gradient(135deg, var(--saga-black) 0%, var(--saga-red) 150%); }

.h-card-title {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-90deg);
    font-family: var(--font-titoli); font-size: 1.2rem; font-weight: bold;
    white-space: nowrap; text-transform: uppercase; letter-spacing: 2px; transition: opacity 0.3s;
}
.h-card-content {
    position: absolute; inset: 0; padding: 30px; opacity: 0; transform: translateX(20px);
    display: flex; flex-direction: column; justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1); pointer-events: none;
}
.h-card:hover .h-card-title, .h-card.active .h-card-title { opacity: 0; }
.h-card:hover .h-card-content, .h-card.active .h-card-content { opacity: 1; transform: translateX(0); transition-delay: 0.2s; pointer-events: auto; }

.h-card-content h3 { font-family: var(--font-titoli); font-size: 2.2rem; margin-bottom: 15px; color: var(--saga-white); }
.h-card-content p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 20px; max-width: 400px; }

/* FIX RISOLUZIONE: Forzato aspetto 9:16 come i veri Reel per la fruibilità! */
.h-video-wrapper {
    flex-shrink: 0; /* Impedisce che si deformi */
    width: 100%; 
    max-width: 250px; /* Non diventa eccessivamente grande su PC */
    aspect-ratio: 9 / 16; /* MANTIENE LE ESATTE PROPORZIONI DEI REEL */
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 2px solid rgba(217,4,41, 0.3); 
    margin: 0 auto; /* Lo centra all'interno della card se avanza spazio */
}

/* OBJECT-FIT COVER farà in modo che il video riempia tutto il contenitore senza bande nere */
.h-video-wrapper video { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    display: block; 
}

/* =========================================
   NUOVA SEZIONE: I NOSTRI ULTIMI POST
   ========================================= */
.social-feed-grid {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; 
    margin: 20px auto 0 auto; max-width: 1200px;
}
.social-card {
    background: var(--saga-darker); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 25px; width: 100%; max-width: 350px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.social-card-header {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-bottom: 20px; font-family: var(--font-titoli); font-size: 1.5rem; font-weight: bold;
    color: var(--saga-white);
}
.social-card-header svg { width: 30px; height: 30px; fill: var(--saga-white); }
.smartphone-frame {
    width: 100%; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden;
    border: 4px solid #222; position: relative; background: #000;
}

/* Tasto/Gradient segnaposto in attesa dell'aggiunta del widget automatico */
.social-overlay-link {
    display: block; width: 100%; height: 100%; text-decoration: none; color: white;
}
.social-bg-gradient {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.social-bg-gradient:hover { transform: scale(1.05); filter: brightness(1.2); }
.tk-gradient { background: linear-gradient(135deg, #25f4ee 0%, #fe2c55 100%); }
.ig-gradient { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

.play-icon { font-size: 4rem; margin-bottom: 10px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.click-text { font-family: var(--font-titoli); font-weight: bold; font-size: 1.2rem; text-transform: uppercase; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* =========================================
   PACCHETTI 
   ========================================= */
.boost-banner {
    background: linear-gradient(135deg, #1a0105 0%, var(--saga-red) 100%); 
    padding: 30px; border-radius: 20px; text-align: center; 
    margin: 0 auto 40px auto; max-width: 1200px; 
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
}
.boost-title { color: var(--saga-white); font-size: 2.8rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-titoli); }
.boost-subtitle { color: white; font-family: var(--font-titoli); font-size: 1.5rem; font-weight: 700; margin: 0; opacity: 0.95; }

.boost-card-container { display: flex; justify-content: center; max-width: 1200px; margin: 0 auto; }
.pc-boost { max-width: 600px; width: 100%; border-top: 10px solid var(--saga-red); background: var(--saga-darker); }
.badge-fire { background-color: var(--saga-red); color: var(--saga-white); padding: 10px 20px; border-radius: 50px; display: inline-block; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.boost-desc { color: var(--saga-white); font-size: 1rem; margin-bottom: 25px; opacity: 0.9; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.pricing-card {
    background: var(--saga-darker); border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 20px; border-radius: 20px; text-align: center;
    transition: transform 0.3s, border-color 0.3s; position: relative;
}
.pricing-card:hover { transform: translateY(-10px); border-color: var(--saga-red); box-shadow: 0 15px 40px rgba(217, 4, 41, 0.2); }

.pc-base { border-top: 8px solid #00B4D8; }
.pc-silver { border-top: 8px solid #C0C0C0; }
.pc-gold { border-top: 8px solid #FFD700; }
.pc-platinum { border-top: 8px solid #E5E4E2; }

.pricing-card.highlighted { border: 2px solid #FFD700; background: linear-gradient(to bottom, var(--saga-darker) 0%, #1a1a00 100%); }
.badge-gold { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #FFD700; color: var(--saga-black); font-size: 0.8rem; font-weight: bold; padding: 5px 15px; border-radius: 20px; text-transform: uppercase; }

.pricing-card h3 { font-family: var(--font-titoli); font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; }
.pricing-card .price { color: var(--saga-white); font-size: 2rem; font-weight: bold; margin-bottom: 20px; }
.pricing-card .price span { font-size: 1rem; font-weight: 500; opacity: 0.6; }

.pricing-features { list-style: none; margin-bottom: 30px; text-align: left; padding: 0; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }

/* =========================================
   CONTATTI E FOOTER
   ========================================= */
.contatti-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; max-width: 1200px; margin: 0 auto; }
.contact-item { background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.contact-item h3 { font-family: var(--font-titoli); margin-bottom: 10px; font-size: 1.5rem; }
.contact-item p { margin-bottom: 25px; opacity: 0.8; }

footer { text-align: center; padding: 30px 5%; background-color: var(--saga-black); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); }
.designer-link { color: var(--saga-red); text-decoration: none; font-weight: bold; }

/* =========================================
   CERCHIETTI FLUTTUANTI SOCIAL
   ========================================= */
.floating-socials { position: fixed; bottom: 30px; right: 30px; z-index: 9980; display: flex; flex-direction: column; gap: 15px; }
.float-btn {
    width: 58px; height: 58px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6); transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1); text-decoration: none;
}
.float-btn svg { width: 28px; height: 28px; fill: #fff; display: block; }
.float-btn:hover { transform: scale(1.15); }
.ig-btn { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.ig-btn:hover { box-shadow: 0 8px 25px rgba(214, 36, 159, 0.5); border-color: transparent; }
.tk-btn { background-color: #000000; border: 2px solid rgba(255, 255, 255, 0.2); }
.tk-btn:hover { box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); border-color: #fff; }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 99999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.cookie-overlay.show { opacity: 1; visibility: visible; }
.cookie-banner { background: var(--saga-darker); padding: 40px 30px; border-radius: 20px; border: 1px solid var(--saga-red); text-align: center; max-width: 500px; width: 90%; }
.cookie-banner h2 { font-family: var(--font-titoli); color: var(--saga-red); margin-bottom: 15px; }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 25px; }
.cookie-banner a { color: var(--saga-white); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; justify-content: center; }
.btn-cookie { padding: 10px 25px; border-radius: 30px; font-weight: bold; cursor: pointer; border: none; font-family: var(--font-testi); }
.btn-cookie-outline { background: transparent; color: var(--saga-white); border: 1px solid var(--saga-white); }
.btn-cookie-accept { background: var(--saga-red); color: var(--saga-white); }

/* =========================================
   ANIMAZIONI 
   ========================================= */
.fade-up { opacity: 0; transform: translateY(40px); animation: fadeUpAnim 0.8s cubic-bezier(0.25, 1, 0.3, 1) forwards; }
@keyframes fadeUpAnim { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   MENU MOBILE (HAMBURGER E CASSETTO LATERALE)
   ========================================= */
.mobile-menu-btn {
    display: none; background: transparent; border: none; cursor: pointer;
    padding: 5px; z-index: 1001; transition: transform 0.2s;
}
.mobile-menu-btn svg { width: 35px; height: 35px; fill: var(--saga-white); }
.mobile-menu-btn:active { transform: scale(0.9); }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px);
    z-index: 9990; opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.mobile-menu-overlay.show { opacity: 1; visibility: visible; }

.mobile-menu-drawer {
    position: fixed; top: 0; right: 0; width: 300px; max-width: 80vw; height: 100vh;
    background: var(--saga-darker); border-left: 1px solid var(--saga-red);
    z-index: 9991; box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex; flex-direction: column; padding: 60px 30px;
}
.mobile-menu-drawer.show { transform: translateX(0); }

.close-menu-btn {
    position: absolute; top: 20px; right: 25px; background: none; border: none; font-size: 2rem;
    color: var(--saga-white); cursor: pointer; transition: color 0.3s;
}
.close-menu-btn:hover { color: var(--saga-red); }

.mobile-nav { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
.mobile-link { 
    color: var(--saga-white); text-decoration: none; 
    font-size: 1.5rem; font-family: var(--font-titoli); 
    text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s;
}
.mobile-link:hover { color: var(--saga-red); }

.mobile-socials { display: flex; gap: 15px; margin-top: 10px; }
.mobile-socials a { 
    width: 45px; height: 45px; border-radius: 50%; 
    border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center; transition: all 0.3s;
}
.mobile-socials svg { width: 22px; height: 22px; fill: #fff; transition: fill 0.3s; }
.mobile-socials a:hover { background: rgba(217,4,41,0.15); border-color: var(--saga-red); transform: scale(1.1); }
.mobile-socials a:hover svg { fill: var(--saga-red); }

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hero-title-wrapper h1 { font-size: 4rem; }
    .hero-badge { width: 200px; }
}

@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    nav.desktop-nav { display: none !important; }
    
    .hero-standard { padding-top: 130px; padding-bottom: 80px; }
    .horizontal-accordion { flex-direction: column; height: auto; }
    .h-card { min-height: 80px; }
    .h-card-title { transform: translate(-50%, -50%) rotate(0deg); }
    .h-card:hover, .h-card.active { min-height: 450px; }
    
    .h-video-wrapper { max-width: 180px; } /* Su tablet fa stringere leggermente il video per salvare spazio in altezza */
    
    .hero-title-wrapper { flex-direction: column; justify-content: center; text-align: center; gap: 20px; }
    .hero-title-wrapper h1 { font-size: 3.5rem; }
    .hero-content p { text-align: center; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .boost-title { font-size: 2rem; }
    .hero-standard { padding-top: 120px; padding-bottom: 60px; }
    .hero-title-wrapper h1 { font-size: 2.8rem; }
    .hero-badge { width: 160px; }
    
    .floating-socials { bottom: 15px; right: 15px; }
    .float-btn { width: 50px; height: 50px; }
    .float-btn svg { width: 24px; height: 24px; }
}
.saga-collage {
    display: grid;
    /* Crea due colonne uguali e due righe */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px; /* Spazio elegante tra le foto */
    width: 100%;
    max-width: 1000px;
    margin: 40px auto; /* Centra il collage */
}

.collage-item {
    width: 100%;
    height: 100%;
    border-radius: 12px; /* Angoli arrotondati in stile SAGA */
    overflow: hidden;    /* Necessario per l'effetto zoom */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Riempie il box SENZA distorcere la foto */
    display: block;
    transition: transform 0.5s ease;
}

/* Effetto Zoom al passaggio del mouse (Premium Feel) */
.collage-item:hover img {
    transform: scale(1.06);
}

/* Assegnazione degli spazi nella griglia */
.item-main {
    grid-column: 1 / 2; /* Occupa la prima colonna */
    grid-row: 1 / 3;    /* Occupa entrambe le righe in altezza */
    min-height: 450px;
}

.item-sub-1 {
    grid-column: 2 / 3; /* Occupa la seconda colonna */
    grid-row: 1 / 2;    /* Occupa la prima riga in alto */
    min-height: 215px;
}

.item-sub-2 {
    grid-column: 2 / 3; /* Occupa la seconda colonna */
    grid-row: 2 / 3;    /* Occupa la seconda riga in basso */
    min-height: 215px;
}

/* =========================================
   RESPONSIVE MOBILE (CELLULARI)
   ========================================= */
@media (max-width: 768px) {
    .saga-collage {
        /* Su cellulare passa a una singola colonna */
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
        padding: 0 15px;
    }
    
    .item-main, .item-sub-1, .item-sub-2 {
        grid-column: 1 / -1; /* Tutti occupano l'intera larghezza */
    }

    .item-main {
        grid-row: 1 / 2;
        height: 350px; /* Altezza controllata per mobile */
    }

    .item-sub-1 {
        grid-row: 2 / 3;
        height: 250px;
    }

    .item-sub-2 {
        grid-row: 3 / 4;
        height: 250px;
    }
}
.shooting-mini-collage {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Colonna sinistra più larga, destra più stretta */
    grid-template-rows: 1fr 1fr;    /* Due righe per impilare le foto piccole */
    gap: 10px;                      /* Spaziatura tra le foto */
    width: 100%;
    max-width: 500px;               /* Non fa allargare troppo il blocco */
    height: 280px;                  /* ALTEZZA FISSA: non sfonda mai la scheda! */
    margin: 0 auto;
}

.shooting-mini-collage div {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.shooting-mini-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Taglia magicamente le foto per farle entrare nei riquadri senza distorcerle */
    display: block;
    transition: transform 0.4s ease;
}

.shooting-mini-collage div:hover img {
    transform: scale(1.08); /* Effetto zoom premium al passaggio del mouse */
}

/* Assegnazione posizioni nella griglia */
.sc-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3; /* Occupa tutta l'altezza a sinistra */
}

.sc-sub {
    grid-column: 2 / 3;
}

/* Adattamento per Cellulari e Tablet */
@media (max-width: 992px) {
    .shooting-mini-collage {
        height: 200px; /* Rimpicciolisce il collage su mobile per evitare scroll infiniti */
        max-width: 350px;
    }
}