/*Tavolozza colore*/
:root {
    --primary: #1f2739;
    --secondary: #9897B3;
    --light: #ffe66d;
    --accent: #d16215;
    --dark: #0d1321;
}

/*reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.4em;
}

a {
    text-decoration: none;
    color: var(--dark);
    cursor: pointer;
}

a:hover {
    color: var(--accent);
}

/*Utility*/
html {
    scroll-behavior: smooth;
}

.res {
    width: 100%;
    max-width: 200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/*tipografia*/
body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Syne", sans-serif;
}

/*Header*/
header.header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 75px;

}

.fixed {
    position: fixed;
    width: 100%;
    background-color: var(--light);
    z-index: 2;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.header container {
    height: 80px;
}

.header__logo {
    width: 130px;
}

.header__icon,
.header__cta {
    width: 200px;
}

.header__cta:hover {
    transform: scale(1.1);
    transform-origin: center;
    transition: transform 0.2s;
}

.header__logo {
    height: fit-content;
    grid-column: 1;
    justify-self: left;
}

.header__icon {
    display: none;
}

.header__menu .site-nav>li {
    display: inline-flex;
    margin: 5px;
}

.header__menu {
    grid-column: 2/4;
    justify-self: center;
    text-align: center;
}

.menu-close {
    display: none;
}

header.header a {
    color: var(--primary);
}

.header__cta {
    display: block;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    grid-column: 4;
    justify-self: right;
    width: fit-content;
}

.site-nav a:hover {
    transform: scale(1.1);
    font-weight: 500;
    transition: transform 0.2s;
}

/*popup*/
.popup-wrapper {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.popup-content {
    background-color: whitesmoke;
    border-radius: 8px;
    color: var(--night);
    width: 500px;
    height: fit-content;
    padding: 30px;
    z-index: 3;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 5% auto;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-ticket {
    font-size: 0.85em;
    line-height: 0.8em;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Stile per il campo di input date */
input[type="date"] {
    font-family: "Inter", sans-serif;
    color: black;
    width: 200px;
    height: fit-content;
    padding: 5px;
    border-radius: 8px;
    font-size: 0.85em;
    text-align: center;
    outline: 0.5px solid var(--dark);
    margin-bottom: 15px;
}

/* Stile per il menu a tendina */
.dropdown-menu {
    width: auto;
}

#menu {
    width: 200px;
    padding: 5px;
    border-radius: 8px;
    font-size: 1em;
    text-align: center;
    outline: 1px solid var(--dark);
    margin-bottom: 15px;
}

.num-biglietti {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

/*intero*/
.num-biglietti-wrapper-int {
    width: 200px;
    padding: 5px;
    border-radius: 8px;
    font-size: 1em;
    outline: 1.55px solid var(--dark);
    text-align: center;
    justify-items: center;
}

.num-biglietti-int {
    display: flex;
    justify-content: space-between;
}

.num-biglietti-int .fa-solid {
    background-color: var(--accent);
    color: wheat;
    border-radius: 50%;
    padding: 5px;
    width: fit-content;
    cursor: pointer;
}


/*ridotto*/
.num-biglietti-wrapper-rid {
    width: 200px;
    padding: 5px;
    border-radius: 8px;
    font-size: 1em;
    outline: 1.55px solid var(--dark);
    text-align: center;
    justify-items: center;
}

.num-biglietti-rid {
    display: flex;
    justify-content: space-between;
}

.num-biglietti-rid .fa-solid {
    background-color: var(--accent);
    color: wheat;
    border-radius: 50%;
    padding: 5px;
    width: fit-content;
    cursor: pointer;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 12px;
}

p.small {
    font-size: 0.7em;
    margin-bottom: 10px;
}

.cta-acquisto {
    background-color: var(--primary);
    padding: 5px;
    border-radius: 8px;
    width: fit-content;
    padding-inline: 10px;
    text-align: center;
    align-items: center;
}

.cta-acquisto h3 {
    color: var(--light);
}

.cta-acquisto:hover {
    background-color: var(--accent);
}

/*Hero*/
.hero {
    background: url("../img/astra-background.jpg") no-repeat center center fixed;
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .hero__content container {
    z-index: 3;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__content img {
    width: auto;
    filter: invert(1);
}

.astra-light {
    display: none;
}

.hero::before {
    content: '';
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark);
    opacity: 0.8;
}

.hero__content {
    z-index: 1;
    color: var(--light);
    padding: 20px;
    text-align: center;
}

.hero__content h2 {
    font-size: 4em;
    margin-bottom: 25px;
}

.hero__content p {
    font-size: 2em;
    line-height: 1.6em;
}

p.dove {
    margin-top: 14px;
    font-size: 1.5em;
    font-family: "Syne", sans-serif;
}


.telefono {
    background-color: var(--secondary);
    padding: 8px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    color: var(--dark);
    font-family: "Syne", sans-serif;
    display: none;
}

.telefono-desktop {
    background-color: var(--secondary);
    padding: 8px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    color: var(--dark);
    font-family: "Syne", sans-serif;

}

section {
    scroll-margin-top: 80px;
    /* margin-bottom: 25px; */
    padding: 20px;
}

.content__programmazione {
    background: var(--secondary);
    background-image: url("../img/Pattern1.png");
    display: flex;
    height: 90vh;
}

.content__loca {
    display: flex;
    align-items: center;
}

.film__locandina img {
    max-width: 70%;
    border-radius: 8px;
}

.film__logo img {
    color: var(--light);
    max-width: 60%;
}

.button__trailer {
    background-color: var(--light);
    padding: 8px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    color: var(--dark);
}

.a__calendario h3 {
    margin-top: 14px;
    color: var(--light);
}

.a__calendario h3:hover {
    margin-top: 14px;
    color: var(--accent);
    transform: scaleX(1.1);
    transform-origin: left;
    transition: transform 0.2s;

}

/*eventi*/

.content__eventi {
    background: var(--primary);
    background-image: url("../img/Pattern2.png");
    display: flex;
    color: white;
    height: 90vh;
}

.content__event {
    display: flex;
    align-items: center;
}


.eventi__locandina img {
    max-width: 68%;
    border-radius: 8px;
}

.eventi__logo img {
    color: var(--light);
    max-width: 60%;
    margin-bottom: 10px;
}

.eventi__logocentro img {
    display: none;
}

.eventi__info {
    margin-bottom: 20px;
}

.button__prenotazione {
    background-color: var(--light);
    padding: 8px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    color: var(--dark);
}

.a__eventi h3 {
    margin-top: 14px;
    color: var(--light);
}

.a__eventi h3:hover {
    margin-top: 14px;
    color: var(--accent);
    transform: scaleX(1.1);
    transform-origin: left;
    transition: transform 0.2s;
}

.cinema__foto {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
}

.foto__uno img,
.foto__due img,
.foto__tre img {
    max-width: 250px;
    border-radius: 8px;
}

.content__fondazione {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.stensen__img img {
    width: 150px;
}

.content__info {
    /* display: flex;
    justify-content: space-evenly; */
    align-items: center;
}

.content__info h2 {
    text-align: center;
}

/*Articoli*/
.content__news {
    background: var(--secondary);
    background-image: url("../img/Pattern1.png");
    display: flex;
    height: 90vh;
    margin-top: 20px;
}

.cinema__news {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}

.news__uno,
.news__due,
.news__tre {
    max-width: 33%;
    border-radius: 8px;
    gap: 50px;
    background-color: var(--light);
    padding: 20px;
    width: 250px;
    height: 357px;
    text-align: center;
}

.news__uno img,
.news__tre img {
    max-width: 50%;
}

.news__due img {
    max-width: 45%;
}

.news__due h4 {
    margin-top: 18px;
}

.news__tre h4 {
    margin-top: 15px;
}

.a__news h4 {
    color: var(--dark);
    line-height: 0.7em;
}

.a__news h4:hover {
    color: var(--accent);
    transform: scale(1.1);
    transition: transform 0.2s;
}

.a__news {
    text-align: center;

}

p.news {
    font-size: 0.9em;
    padding: 5px;
    line-height: 1.5em;
}

/*Info utili*/
.content__info {
    background: var(--dark);
    background-image: url("../img/Pattern2.png");
    display: flex;
    height: 90vh;
    width: auto;
}

.cinema__info {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.info__dove,
.info__prezzi,
.info__contatti {
    max-width: 33%;
    border-radius: 8px;
    gap: 2px;
    background-color: var(--light);
    padding: 20px;
    width: 400px;
    height: 500px;
    text-align: center;
}

.google-maps {
    text-align: center;
    padding: 10px;
    width: 320px;
    height: 200px;


}

.google-maps iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

a.biglietti {
    background-color: var(--primary);
    color: white;
    padding: 10px;
    width: 100px;
    border-radius: 8px;
    font-family: "Syne", sans-serif;
    margin-top: 10px;
}

a.biglietti:hover {
    color: white;
    background-color: var(--accent);
}

.info__prezzi img {
    max-width: 30%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info__prezzi h4 {
    margin-top: 14px;
    color: var(--dark);

}

.info__prezzi h4:hover {
    margin-top: 14px;
    color: var(--accent);
    transform: scale(1.1);
    transition: transform 0.2s;

}

.info__contatti img {
    width: 320px;
    height: 200px;
    border-radius: 8px;
    margin-top: 10px;
}

/*Newsletter*/
.content__newsletter {
    display: flex;
    justify-content: center;
}

.button__newsletter {
    display: block;
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.popup__wrapper {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;

    left: 0;
    width: 100%;
    height: 100%;
    display: none;

    z-index: 1;
}

.popup {
    background-color: var(--night);
    color: var(--light);
    width: 100%;
    max-width: 300px;
    padding: 15px;
    z-index: 2;
    position: relative;

    margin: 5% auto;
}

.popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}

.h2__newsletter {
    color: var(--ssecondary);
}

.content__newsletter a {
    color: var(--light);
}

.button__newsletter {
    font-size: 1.3em;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 25px;
    align-items: center;
    border: 0;
    cursor: pointer;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--light);
}

/* Mailchimp */
#mc-embedded-subscribe-form input[type=checkbox] {
    display: inline;
    width: auto;
    margin-right: 10px;
}

#mergeRow-gdpr {
    margin-top: 20px;
}

#mergeRow-gdpr fieldset label {
    font-weight: normal;
}

#mc-embedded-subscribe-form .mc_fieldset {
    border: none;
    min-height: 0px;
    padding-bottom: 0px;
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    margin: 20px;
}

#mc_embed_signup h2 {
    font-weight: bold;
    padding: 0;
    margin: 15px 0;
}

#mc_embed_signup input {
    border: 1px solid #ABB0B2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#mc_embed_signup input[type=checkbox] {
    -webkit-appearance: checkbox;
}

#mc_embed_signup input[type=radio] {
    -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
    border-color: #333;
}

#mc_embed_signup .button {
    clear: both;
    background-color: var(--primary);
    border: 0 none;
    border-radius: 4px;
    transition: all 0.23s ease-in-out 0s;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-content: right;
    font-size: 15px;
    font-weight: bold;
    height: 32px;
    line-height: 1.3em;
    margin: 10px 5px 10px 0;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    max-width: 150px;
    /* width: fit-content; */
    width: -moz-fit-content;
}

#mc_embed_signup .button:hover {
    background-color: var(--accent);
}

#mc_embed_signup .small-meta {
    font-size: 11px;
}

#mc_embed_signup .nowrap {
    white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 96%;
    padding-bottom: 3%;
    min-height: 50px;
    display: grid;
}

#mc_embed_signup .size1of2 {
    clear: none;
    float: left;
    display: inline-block;
    width: 46%;
    margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
    margin-right: 2%;
    /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 3px;
}

#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
}

#mc_embed_signup .mc-field-group select {
    display: inline-block;
    width: 99%;
    padding: 5px 0;
    margin-bottom: 2px;
}

#mc_embed_signup .mc-address-fields-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 96%;
    gap: 15px;
}

#mc_embed_signup .mc-sms-phone-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 96%;
    gap: 15px;
    padding-top: 5px;
}

#mc_embed_signup .datefield,
#mc_embed_signup .phonefield-us {
    padding: 5px 0;
}

#mc_embed_signup .datefield input,
#mc_embed_signup .phonefield-us input {
    display: inline;
    width: 60px;
    margin: 0 2px;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px 0 2px 0;
}

#mc_embed_signup .phonefield-us .phonearea input,
#mc_embed_signup .phonefield-us .phonedetail1 input {
    width: 40px;
}

#mc_embed_signup .datefield .monthfield input,
#mc_embed_signup .datefield .dayfield input {
    width: 30px;
}

#mc_embed_signup .datefield label,
#mc_embed_signup .phonefield-us label {
    display: none;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    font-size: 11px;
    margin-right: 4%;
}

#mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

#mc_embed_signup .clear {
    clear: both;
}

#mc_embed_signup .foot {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 96%;
    align-items: center;
}

@media screen and (max-width:400px) {
    #mc_embed_signup .foot {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    #mc_embed_signup .referralBadge {
        width: 50%;
    }
}

#mc_embed_signup .brandingLogo {
    justify-self: right;
}

@media screen and (max-width:400px) {
    #mc_embed_signup .brandingLogo {
        justify-self: left;
    }
}

#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
    display: block;
    padding: 3px 0;
    margin: 0;
}

#mc_embed_signup .mc-field-group.input-group label {
    display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
    display: inline;
    width: auto;
    border: none;
}

#mc_embed_signup div#mce-responses {
    float: left;
    top: -1.4em;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 90%;
    margin: 0 5%;
    clear: both;
}

#mc_embed_signup div.response {
    margin: 1em 0;
    padding: 1em .5em .5em 0;
    font-weight: bold;
    float: left;
    top: -1.5em;
    z-index: 1;
    width: 80%;
}

#mc_embed_signup #mce-error-response {
    display: none;
}

#mc_embed_signup #mce-success-response {
    color: #529214;
    display: none;
}

#mc_embed_signup label.error {
    display: block;
    float: none;
    width: auto;
    margin-left: 1.05em;
    text-align: left;
    padding: .5em 0;
}

#mc_embed_signup .helper_text {
    color: #8d8985;
    margin-top: 2px;
    display: inline-block;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
}

#mc-embedded-subscribe {
    clear: both;
    width: auto;
    display: block;
    margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
    font-size: 1.1em;
}

#mc_embed_signup #num-subscribers span {
    padding: .5em;
    border: 1px solid #ccc;
    margin-right: .5em;
    font-weight: bold;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inline-block;
    margin: 2px 0 1em 0;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
    color: #e85c41;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border: 2px solid #e85c41;
}

.mc_fieldset gdprRequired mc-field-group {
    line-height: 1.3em;
}

.content__gdprLegal {
    margin-top: 10px;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 15px;
}

/*griglia*/

.loghi {
    display: grid;
    grid-template-columns: repeat(5, 0.2fr);
    gap: 70px;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 10px;
}

.logo__uno,
.logo__due,
.logo__tre,
.logo__quattro,
.logo__cinque {
    width: fit-content;
    display: grid;
    justify-content: space-between;
}

.logo__uno img {
    /* width: 70%; */
    grid-column: 1;
    justify-self: center;
}

.logo__due img {
    /* width: 60%; */
    grid-column: 2;
    justify-self: center;
}

.logo__tre img {
    width: 40%;
    justify-self: center;
    grid-column: 3;
}

.logo__quattro img {
    width: 80%;
    grid-column: 4;
    justify-self: center;
}

.logo__cinque img {
    width: 60%;
    grid-column: 5;
    justify-self: center;
}

footer h4 {
    color: var(--light);
}

.content__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    margin-top: 40px;
}

.content__footer a {
    color: white;
}

.footer__info {
    display: flex;
    font-display: row;
    justify-content: space-between;
    gap: 15px;
}

.logo__isia img {
    width: 15%;
}

.social>a:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
    color: var(--accent);
}

/* -------------------------------------------------------------------------------- */
/* ! Media query */
@media(min-width: 769px) and (max-width: 1199px) {
    .container {
        width: 100%;
        /* Imposta la larghezza del container al 100% */
        margin: 0;
        /* Rimuove eventuali margini */
        padding: 0;
        /* Rimuove eventuali padding */
    }

    .hero__content img {
        max-width: 100%;
        /* Imposta la larghezza massima dell'immagine al 100% */
        height: auto;
        /* Imposta l'altezza su automatica per mantenere l'aspetto proporzionato */
        filter: invert(1);

    }

    .content__news {
        height: auto;
    }

    .cinema__news {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news__uno,
    .news__due,
    .news__tre {
        max-width: 80%;
        width: auto;
        height: auto;
    }

    .content__info {
        height: auto;
        width: auto;
        display: flex;
        flex-direction: column;
    }

    .cinema__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        max-width: auto;
        text-align: center;
    }

    .info__dove,
    .info__prezzi,
    .info__contatti {
        max-width: 80%;
        width: auto;
        height: auto;
        text-align: center;
    }

    .hero {

        background-size: cover;
        /* Ridimensiona l'immagine per contenere l'intera area senza ritagliare */
        background-position: center;
        /* Centra l'immagine */
        /* Modifica il padding per adattarsi alle dimensioni più piccole */
    }
}

@media (max-width: 768px) {
    * {
        width: auto;
    }

    header {
        display: flex;
        align-items: center;
    }

    .header__icon {
        display: block;
        grid-column: 4/5;
        justify-self: right;
        width: fit-content;
        cursor: pointer;
        font-size: 1.2em;
        margin-right: 20px;
    }


    .header__logo img {
        width: 100px;
        margin-left: 20px;
    }

    .header__cta {
        grid-column: 2/4;
        justify-self: center;
        width: fit-content;
        font-size: 1.2em;
    }

    .site-nav {
        display: flex;
        flex-direction: column;
        align-items: self-end;

    }

    .header__menu {
        display: none;
    }

    .header__menu.open {
        display: block;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--light);
        padding: 50px;
        font-size: 1.5em;

    }

    .header__icon:hover {
        transform: scale(1.1);
        transform-origin: center;
        transition: transform 0.2s;
    }

    .header__menu.open .menu-close {
        display: block;
        font-size: 1.2em;
        cursor: pointer;
        color: var(--dark);
        text-align: right;
    }

    .header__menu.open .menu-close:hover {
        transform: scale(1.1);
        font-weight: 500;
        transition: transform 0.2s;
        transform-origin: right;
    }

    .site-nav>a {
        color: white;
    }

    /*popup*/
    .popup-content {
        max-width: max-content;
    }

    /*hero*/
    .hero {
        padding: 20px;
        background-size: cover;
        /* Ridimensiona l'immagine per contenere l'intera area senza ritagliare */
        background-position: center;
        /* Centra l'immagine */
        /* Modifica il padding per adattarsi alle dimensioni più piccole */
    }

    .hero__content {
        text-align: center;
        font-size: 1em;
        /* Centra il contenuto nella sezione */
    }

    .hero__content img {
        max-width: 100%;
        /* Imposta la larghezza massima dell'immagine al 100% */
        height: auto;
        /* Imposta l'altezza su automatica per mantenere l'aspetto proporzionato */
        filter: invert(1);

    }


    p.dove {
        font-size: 1.35em;
    }

    .content__programmazione {
        height: auto;
        background-size: cover;
    }

    .content__eventi {
        height: auto;
    }

    .cinema__foto {
        display: none;
    }


    .stensen__img {
        display: none;
    }

    .content__news {
        height: auto;
    }

    .cinema__news {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .news__uno,
    .news__due,
    .news__tre {
        max-width: 80%;
        width: auto;
        height: auto;
    }

    .content__info {
        height: auto;
        width: auto;
        display: flex;
        flex-direction: column;
    }

    .cinema__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        max-width: auto;
    }

    .info__dove,
    .info__prezzi,
    .info__contatti {
        max-width: 80%;
        width: auto;
        height: auto;
        text-align: center;
    }

    .google-maps {
        text-align: center;
        padding: 10px;
        width: auto;
        height: auto;

    }

    /*footer*/
    .content__footer {
        font-size: 0.8em;
        gap: 20px;
    }

    .logo__isia img {
        max-width: 150px;
    }

    .logo__uno img {
        max-width: 150px;
    }

    .logo__due img {
        max-width: 150px;
    }

    .logo__tre img {
        max-width: 150px;
    }

    .logo__quattro img {
        max-width: 150px;
    }

    .logo__cinque img {
        max-width: 150px;
    }


    /* -------------------------------------------------------------------------------- */
    /* ! Mobile */
    /* -------------------------------------------------------------------------------- */
    @media (max-width: 480px) {
        .container {
            max-width: fit-content;
        }

        .popup-content {
            width: 300px;
            height: auto;
            top: 50%;
        }

        p.dove {
            font-size: 1.2em;
        }

        .telefono {
            display: block;
        }


        .hero {
            padding: 20px;
            background: url("../img/astra-background-vert.jpg");

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            /* Ridimensiona l'immagine per contenere l'intera area senza ritagliare */
            /* background-position: center; */
            /* Centra l'immagine */
            /* Modifica il padding per adattarsi alle dimensioni più piccole */
        }

        .hero__content {
            text-align: center;
            font-size: 0.8em;
            /* Centra il contenuto nella sezione */
        }

        .hero__content img {
            max-width: 100%;
            /* Imposta la larghezza massima dell'immagine al 100% */
            height: auto;
            /* Imposta l'altezza su automatica per mantenere l'aspetto proporzionato */
            filter: invert(1);
        }

        /*content programmazione ed eventi poi incollali sul mobile*/
        .content__programmazione {
            text-align: center;
            display: flex;
            height: auto;
            width: auto;
        }

        .content__loca {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .film__locandina img {
            max-width: 40%;
            border-radius: 8px;
            margin-bottom: 15px;
        }



        .film__logo img {
            color: var(--light);
            max-width: 40%;
        }

        .button__trailer {
            display: none;
        }

        .a__calendario {
            margin-top: -10px;
        }

        .a__calendario h3:hover {
            color: var(--accent);
            transform: scale(1.1);
            transform-origin: center;
            transition: transform 0.2s;
        }

        .telefono-desktop {
            display: none;
        }

        /*content eventi*/
        .content__eventi {
            text-align: center;
            display: flex;
            height: auto;
            width: auto;
        }

        .content__event {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .eventi__locandina img {
            max-width: 48%;
        }

        .eventi__logo img {
            display: none;
            margin-bottom: 15px;
        }

        .eventi__logocentro img {
            display: block;
            margin-top: 15px;
            text-align: center;
            width: 50%;
            margin-left: 25%;
            margin-bottom: 15px;
        }

        .button__prenotazione {
            display: none;
        }

        .a__eventi h3:hover {
            transform: scaleX (1.1);
            transition: transform 0.2s;
            transform-origin: center;
        }

        .cinema__foto {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            height: auto;
            display: none;
        }

        .stensen__img {
            display: none;
        }

        .stensen__info h2 {
            text-align: center;
            margin-bottom: 10px;
        }

        .content__news {
            height: auto;
            display: flex;
            align-items: center;
        }

        .cinema__news {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .news__uno,
        .news__due,
        .news__tre {
            max-width: 100%;
        }

        .content__info {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            height: auto;
            max-width: 100%;
        }

        .cinema__info {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 100%;
        }

        .google-maps {
            text-align: center;
            padding: 10px;
            width: auto;
            height: auto;

        }

        .google-maps iframe {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .info__dove,
        .info__prezzi,
        .info__contatti {

            max-width: 100%;
            height: auto;
        }

        .info__contatti img {
            width: 100%;
            height: 100%;
        }

        footer {
            height: auto;
            width: 100%;
        }

        .loghi {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-top: 5px;
            align-items: center;
        }

        .logo__uno,
        .logo__due,
        .logo__tre,
        .logo__quattro,
        .logo__cinque {
            width: fit-content;

        }

        .logo__uno img {
            width: 10em;
        }

        .logo__due img {
            width: 10em;
        }

        .logo__tre img {
            width: 4em;
        }

        .logo__quattro img {
            width: 7em;

        }

        .logo__cinque img {
            width: 7em;

        }

        .content__footer {
            display: flex;
            flex-direction: column;
        }

        .footer__info {
            display: flex;
            flex-direction: column;
        }

        .indirizzi {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }

        .logo__isia img {
            width: 7em;
        }
    }