/* Tavolozza colore */
:root {
    --primary: #adadad;
    --secondary: #aacde3;
    --accents: #FF8360;
    --light: #FCFCFC;
    --dark: #222222;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
}


*::before,
*::after {
    color: var(--light);
}

body {
    background-color: var(--light);
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a,
img,
button,
.fa-solid {
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.res {
    width: 100%;
    max-width: 300px;
    box-shadow: 0px 0px 5px var(--dark);
}

.clip {
    clip-path: circle();
    margin: auto;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lexend";
    color: #FCFCFC;
}

header h1 {
    color: var(--light);
    font-weight: 200;
    font-size: 1.7em;
    text-align: center;
}

header {
    background-color: var(--dark);
    color: var(--light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 130px;
    font-family: 'Lexend', sans-serif;
    transition: 600ms cubic-bezier(.4, .11, .55, .97);

}

.cover__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.cover__hb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
}




/* Menu */
.nav-toggle-btn .fa-solid {
    color: var(--light);
    font-size: 2em;
}

.nav-toggle-btn.active .open,
.nav-toggle-btn .close {
    display: none;
}

.nav-toggle-btn .open,
.nav-toggle-btn.active .close {
    display: block;
}

.cover__menu {
    width: 100%;
    order: 3;
    visibility: hidden;
    padding: 20px;
}

.cover__cta {
    width: 100%;
    order: 4;
    visibility: hidden;
    padding: 20px;
}

.cover__cta a {
    color: var(--light);
    border: 1px solid var(--light);
    width: fit-content;
    padding: 8px;
}

.cover__cta a:is(:hover) {
    background: var(--secondary);
    color: var(--dark);
}


.active .cover__cta {
    visibility: visible;
}

.active .cover__menu {
    visibility: visible;
}

.cover__menu a {
    color: var(--light);
}


.cover.active {
    height: 300px;
}


/* Hero */

.hero h2 {
    color: var(--light);
    text-shadow: 0px 0px 10px var(--dark);
    justify-content: center;
    text-align: center;
    margin-top: 300px;
}


.hero {
    background: url(img/par44919-teaser-story-big.jpg);
    background-size: 200%;
    background-clip: padding-box;
    background-position: -50px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    height: 450px;
}

.hero p {
    font-size: 1.2em;
    color: var(--light);
    margin-top: 5px;
    justify-content: center;
    text-align: center;
    font-family: Lexend;
    font-weight: 200;
    text-shadow: 0px 0px 10px var(--dark);
}




/* Content */
section {
    padding: 20px;
    background: var(--light);
    margin: 0px 0;
    display: block;

}

/* Sinossi */

.content__sinossi {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;


}

.content__sinossi h2 {
    color: var(--dark);
    text-shadow: none;
    margin-bottom: 20px;
    text-align: center;
}

.leading__sinossi {
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.leading {
    margin-top: 10px;
    font-family: Roboto;
    font-weight: 200;
    text-align: justify;
    font-size: 0.9em;

}

.cta__group {
    font-size: 0.8em;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    order: 1;
    justify-content: center;
}

.cta__primary,
.cta__secondary {
    font-weight: 600;
    padding: 6px 10px;
    font-family: "Lexend";
}

.cta__primary {
    background: var(--dark);
    color: var(--light);
    border: 2px solid;
}

.cta__primary:is(:hover, :focus) {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid transparent;
}

.cta__secondary {
    background: var(--dark);
    color: var(--light);
    border: 2px solid;
}

.cta__secondary:is(:hover, :focus) {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid transparent;
}


/* Autore */

.content__autore {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.content__autore h2 {
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
    margin: auto;
    width: 100%;
}

.leading__autore {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65%;
    margin: auto;
    justify-content: center;
}

.leading__2 {
    margin-top: 20px;
    font-family: Roboto;
    font-weight: 200;
    text-align: justify;
    font-size: 0.9em;
    width: fit-content;
}

.content__autore__img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;


}

.content__autore__img h2 {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.content__autore__img p {
    display: block;
    width: 80%;
    font-family: Roboto;
    font-weight: 200;
    text-align: justify;
    font-size: 0.9em;
}

.content__autore__img2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 30%;
}


/* Scopri */

.content__scopri h2 {
    color: var(--dark);
    text-align: center;
    margin: auto;
    width: 100%;
    margin-top: 70px;
}

.content__scopri {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.scopri__histoire,
.scopri__societe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta__histoire,
.cta__societe {
    font-weight: 600;
    padding: 6px 10px;
    font-family: "Lexend";
}

.cta__histoire {
    background: var(--dark);
    color: var(--light);
    border: 2px solid;
}

.cta__histoire:is(:hover, :focus) {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid transparent;
}

.cta__societe {
    background: var(--dark);
    color: var(--light);
    border: 2px solid;
}

.cta__societe:is(:hover, :focus) {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid transparent;
}

/* Newsletter */

.content__newsletter {
    padding-top: 100px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.content__newsletter h2 {
    color: var(--dark);
}

.footer__newsletter__form {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottone__bianco {
    border: 1px solid var(--dark);
    background: var(--light);
    color: var(--dark);
    font-family: Lexend;
}

.bottone__nero {
    border: 1px solid var(--light);
    background: var(--dark);
    color: var(--light);
    font-family: Lexend;
}


.gs-small {
    font-family: Lexend;
    font-size: 0.9em;
    width: 70%;
    text-align: center;
    margin: auto;
}

#iscriviti {
    width: 80%;
    height: 3.75rem;
    text-align: center;
    text-indent: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.75rem;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Footer elements */

footer * {
    background-color: var(--dark);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: var(--light);
    justify-content: space-between;
    padding: 0px;
    font-weight: 200;
    font-family: Lexend;

}

.footer__logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.footer__menu {
    font-family: Lexend;
    font-weight: 200;
    color: var(--light);
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.footer__editore {
    justify-content: center;
    gap: 30px
}

.footer__editore h4 {
    width: 100%;
    justify-content: center;
    font-weight: 400;
    margin-top: 40px;
}

.actessud {
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.social {
    justify-content: center;

}

.social__link {
    gap: 60px;
    margin-bottom: 70px;
}

footer hr {
    display: block;
    border: 1px;
    height: 1px;
    background-color: var(--light);
}

.container__legal {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    font-size: 0.7em;
    gap: 10px;
    padding: 30px;
}

.legal__info2 {
    font-size: 0.7em;
    padding: 30px;
}





/* BTT */

.btt {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: var(--dark);
    font-size: 20px;
    z-index: 1;
    padding: 10px;
    border-radius: 3px;
}

.btt__icon {
    color: var(--light);
}

/* Media query Medium */
@media (min-width: 767px) {

    /* Header Medium */

    header,
    .cover.active {
        height: 130px;
        align-items: center;
        justify-content: center;
    }

    .mainmenu li {
        display: inline-block;
        font-size: 1em;
        font-weight: 200;
        align-items: center;
        padding: 20px;
    }

    .cover__menu {
        all: unset;
    }

    .cover__hb {
        display: none;
    }

    /* Hero Medium */

    .hero {
        display: flex;
        flex-direction: row;
        background-size: 138%;
        justify-content: center;
    }

    .hero__text {
        width: 50%;
    }

    /* Sinossi Medium */

    .container {
        display: block;
        padding: 30px;
    }

    .content__sinossi {
        width: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 25px;
    }

    .content__sinossi h2 {
        display: block;
        width: 100%;
        margin: auto;
        margin-bottom: 30px;
        gap: 20px;
    }

    .leading__sinossi {
        width: 40%;
        gap: 15px;
        margin-top: 0px;
    }


    .cta__group {
        font-size: 0.9em;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: space-around;
    }

    .cta__primary,
    .cta__secondary {
        font-weight: 600;
        padding: 8px 12px;
        font-family: "Lexend";
    }


    /* Autore Medium */

    .leading__autore {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 80%;
        gap: 30px;
    }

    .leading__2 {
        margin-top: 20px;
        font-family: Roboto;
        font-weight: 200;
        text-align: justify;
        font-size: 0.9em;
        width: 50%;
    }


    /* Scopri Medium */

    .content__scopri {
        flex-direction: row;
        flex-wrap: wrap;
    }



    /* Newsletter Medium */

    .bottone__bianco {
        max-width: 40%;
    }

    .bottone__nero {
        max-width: 40%;
    }

    .gs-small {
        width: auto;
        margin-top: 10px;
    }


    /* Footer Medium */

    .container__legal {
        text-align: center;
        justify-content: center;
        gap: 40px;

    }
}

/* Media query Large  */
@media (min-width: 992px) {

    /* Header Large */

    header {
        justify-content: center;
        height: 140px;
    }

    /* Hero Large */

    .hero {
        background-size: 130%;
        display: flex;
        justify-content: center;
        height: 720px;
    }

    .hero h2 {
        margin-top: 500px;
    }

    /* Sinossi Large */

    .container {
        display: block;
    }

    .content__sinossi {
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }

    .content__sinossi h2 {
        display: block;
        margin: auto;
        margin-bottom: 30px;
    }

    .leading__sinossi {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .leading {
        font-size: 0.9em;
        font-weight: 200;
    }

    .leading__img {
        align-items: flex-end;
        margin: auto;
        max-width: fit-content;
    }

    .cta__group {
        margin: auto;
        gap: 20px;

    }

    .cta__primary,
    .cta__secondary {
        padding: 12px 25px;
    }

    /* Autore Large */

    .content__autore {
        width: 100%;

    }

    .leading__autore {
        gap: 60px;
    }

    .content__autore__img p {
        max-width: 70%;
        margin-top: 20px;
    }


    /* Footer Large */



}