/* HERO MAGAZZINO */
.magazzino-hero {
    height: 50vh;
    background: url('../img/camion.png') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 0 20px;
    margin-top: 140px;
    overflow: hidden;
}

/* overlay scuro sopra l'immagine */
.magazzino-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.magazzino-hero h1,
.magazzino-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
}

.magazzino-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
}

.magazzino-hero p {
    font-size: 1.05rem;
    opacity: 0.95;
}

/* SEZIONE MAGAZZINO */
.magazzino-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

/* GRID TESTO + VIDEO */
.magazzino-grid {
    display: grid;
    grid-template-columns: 1fr 520px; /* testo + colonna video fissa */
    gap: 40px;
    align-items: start;
}

/* TESTO (titolo, paragrafo, elenco) */
.magazzino-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0B7A3E; /* verde titolo */
    margin-bottom: 12px;
}

.magazzino-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* ELENCO con pallini verdi */
.magazzino-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.magazzino-text ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #222;
    font-size: 15px;
}

.magazzino-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0B7A3E; /* pallino verde */
}

/* VIDEO / MEDIA: dimensioni contenute nella colonna destra */
.magazzino-video {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.magazzino-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* NUMERI ANIMATI e card (se riutilizzate) */
.magazzino-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.num-box {
    background: #ffffffdd;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.num {
    font-size: 42px;
    font-weight: 700;
    color: #0B7A3E;
    display: block;
    margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .magazzino-grid {
        grid-template-columns: 1fr 420px;
    }
}

@media (max-width: 768px) {
    .magazzino-hero {
        height: 40vh;
        margin-top: 110px;
        background-position: center top;
        background-size: cover;
        padding: 120px 16px 60px;
    }

    .magazzino-hero h1 {
        font-size: 30px;
    }

    .magazzino-hero p {
        font-size: 16px;
    }

    .magazzino-grid {
        grid-template-columns: 1fr; /* testo sopra video */
        gap: 30px;
    }

    .magazzino-video {
        max-width: 100%;
    }

    .magazzino-numbers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .num {
        font-size: 28px;
    }
}