/* #productHeader img {
    height: 87vh;
    width: auto;
}

@media screen and (max-width: 770px) {
    #productHeader img {
        height: auto;
        width: 100%;
    }
} */

.containerHead {
    width: 100%;
    max-width: 1920px;
    /* Mantiene una larghezza massima */
    margin: 0 auto;
}


.containerHead img {
    width: 100%;
    /* L'immagine si ridimensiona in base alla larghezza del contenitore */
    height: auto;
    /* Mantiene le proporzioni */
    display: block;
    /* Evita spazi indesiderati sotto l'immagine */
}

.icons {
    width: 5vw;
    align-items: center;
    justify-content: center;
    margin-bottom: -2.741vh;
}


.icons-container {
    max-width: 50vw;
    margin: 0 auto;
}


/* HR Cinematografico */
.fancy-hr {
    width: 80%;
    margin: 0 auto;
    height: 3px;
    background: linear-gradient(to right, #873832, #ffffff, #873832);
    border: none;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 1.5s ease;
}

.descIcons {
    color: white;
    font-family: titoli;
    font-size: 0.6rem;
}


@media screen and (min-width: 250px) and (max-width: 300px) {
    #finalPart {
        margin-bottom: 18vw;
    }
}

@media screen and (min-width: 300px) and (max-width: 408px) {
    #finalPart {
        margin-bottom: 5vh;
    }
}

@media screen and (min-width: 408px) and (max-width: 505px) {
    #finalPart {
        margin-bottom: 1vh;
    }
}

#finalPart {
    padding-bottom: 15px;
    margin-bottom: 0;
}

.social-icons {
    flex-wrap: wrap;
}

@media screen and (max-width:600px) {

    .icons-container {
        max-width: 90vw;
    }

    .row-cols-2>* {
        flex: 0 0 auto;
        width: 33%;
    }

    .icons {
        width: 12vw;
        align-items: center;
        justify-content: center;
        margin-bottom: 3vh;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1* var(--bs-gutter-y));
        margin-right: calc(-.5* var(--bs-gutter-x));
        margin-left: calc(-.5* var(--bs-gutter-x));
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .icons {
        width: 10vw;
        align-items: center;
        justify-content: center;
        margin-bottom: -1.5vh;
    }

    .icons-container {
        max-width: 70vw;
    }

    .row-cols-2>* {
        flex: 0 0 auto;
        width: 40%;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*----------TABLET------------*/

@media screen and (max-width:768px) {
    #video-placeholder {
        width: 100%;
        height: 100%;
    }
}

@media screen and (width: 768px) {
    .icons {
        width: 7vw;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.259vh;
    }

    .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1* var(--bs-gutter-y));
        margin-right: calc(-.5* var(--bs-gutter-x));
        margin-left: calc(-.5* var(--bs-gutter-x));
        justify-content: center;
    }
}


@media screen and (width:1024px) {
    .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        flex-direction: row;
    }

    .row-cols-2>* {
        flex: 0 0 auto !important;
        width: auto !important;
    }
}



@media screen and (min-width: 601px) and (max-width:767px) {
    .icons {
        width: 7vw !important;
        align-items: center;
        justify-content: center;
        margin-bottom: -0.741vh !important;
    }
}


/* Mini carosello per personaggi */
#charactersCarousel img {
    height: auto;
    max-height: 65vh;
    object-fit: contain;
}

.modal-fullscreen .modal-body img {
    max-height: 90vh;
    object-fit: contain;
}

.modal-fullscreen .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal-fullscreen .modal-body img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

@media screen and (max-width: 770px) {
    .carousel-inner {
        height: 35vh;
    }
}



/* SEZIONE OUR TEAM */
#team-section {
    position: relative;
    /* padding: 80px 0; */
    padding: 0;
}

.team-hero {
    /* background-image: url('/resources/images/generals/team-hero.jpg'); sostituisci con il path corretto */
    background-size: cover;
    background-position: center;
    /* padding: 80px 20px; */
    padding: 0px;
    margin-bottom: 40px;
}

.team-title {
    font-family: titoli;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px black;
}

.team-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-card:hover {
    transform: translateY(-10px);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-info {
    padding: 15px;
    text-align: center;
    color: white;
    font-family: paragrafo;
}

@media screen and (max-width: 768px) {
    .team-card .team-info h5 {
        font-size: 1rem;
    }

    .team-card .team-info p {
        font-size: 0.9rem;
    }

    .team-hero {
        /* padding: 40px 10px; */
        padding: 0px;
    }

    .team-title {
        font-size: 1.8rem;
    }
}

/* ================================
   KICKSTARTER CALL TO ACTION
================================ */
.kickstarter-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, #111319 0%, #050608 55%, #000000 100%);
    color: #ffffff;
}

.kickstarter-cta::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(5, 206, 120, 0.12), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.kickstarter-cta .container {
    position: relative;
    z-index: 1;
}

.kickstarter-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.kickstarter-title {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kickstarter-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Bottone principale */
.kickstarter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;

    background: linear-gradient(135deg, #05ce78, #18e89a);
    color: #02110b;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    box-shadow:
        0 0.6rem 1.7rem rgba(5, 206, 120, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.6);

    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        filter 0.18s ease-out,
        background-position 0.18s ease-out;
    background-size: 160% 160%;
}

/* Testi interni */
.kickstarter-label {
    font-size: 0.72rem;
    opacity: 0.85;
}

.kickstarter-logo {
    font-size: 1.02rem;
}

/* Hover / focus */
.kickstarter-btn:hover,
.kickstarter-btn:focus-visible {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
    box-shadow:
        0 1rem 2.2rem rgba(5, 206, 120, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.9);
}

.kickstarter-btn:active {
    transform: translateY(0) scale(0.99);
    box-shadow:
        0 0.4rem 1rem rgba(5, 206, 120, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.9);
}

/* Accessibilità focus tastiera */
.kickstarter-btn:focus-visible {
    outline: 2px solid #05ce78;
    outline-offset: 3px;
}

/* Responsivo */
@media (max-width: 576px) {
    .kickstarter-title {
        font-size: 1.4rem;
    }

    .kickstarter-btn {
        width: 100%;
        max-width: 320px;
    }

    .kickstarter-label {
        display: none; /* più pulito su schermi piccolissimi */
    }
}
