
body{
    font-family: 'Open sans', 'sans serif';
    position: relative;
    margin: 0;
    padding: 0;
}

a, a:hover{
    color: inherit;
}

a:hover, a:active, a:focus{
    text-decoration: none;
}

a:before{
    text-decoration: none !important;
}

p{
    margin-bottom: 1.7rem;
}


/*  ****************************************************************************
        LAYERS
    ****************************************************************************/

/* ENTETE */

.Header{
    background-size: cover;
    width: 100%;
    position: relative;
    border-bottom: 6px solid #eee;
}

.Header-h1{
    margin-top: 10px; 

    text-align: center;
    display: inline-block;
}

.Header-h1 img{
    width: 200px;
    height: auto;
    top: 20px;
}

.Header-content{
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
}

.Menu-toggle {
    /* Cache l'élément sans affecter son interaction ni celle du label */
    display: none; 
}

.pr{
    max-width: 7ch;
    overflow-wrap: break-word;
    margin-left: 8px;
}

/* PIED DE PAGE */

.Footer{
    background-color: #1c2028;
    color: #eee;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.Footer-content{
    font-family: 'Arial', 'sans-serif';
    margin: 0 auto;
    padding: 30px 30px; 
    font-weight: 300;
}

.grid-3-small-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    align-items: center; 
}

.grid-3-small-1 > div:nth-child(2) {
    text-align: center; 
}


.Footer-item{
    padding-left: 70px; 
    position: relative;
    line-height: 1.4;
    font-size: medium; 
    color: #e3e3e3;
}

.Footer-item .fa-solid {
    position: absolute; 
    top:0;
    left:0;
    font-size: 3.5em; 
    opacity: .6; 
}

.Footer-links{
    list-style-type: none;
}

.Footer-version {
    position: absolute;
    bottom: 5px;
    right: 30px; 
    
    color: #ffffff;
    font-size: 1em;
    font-family: 'Arial', 'sans-serif';
    opacity: 0.8;
    z-index: 1001;
}

/* MENU PRINCIPAL */

@media screen and (min-width: 1024px) {

    .Menu{
        top: -90px;
        right: 0;
        position: absolute;
    }

    .Menu-item{
        display: inline-block;
        margin: 0 5px;
    }

    .Menu-link{
        display: block;
        height: 185px;
        padding: 0;
        width: 120px;
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        transform: rotate(7deg);
        transition: all 200ms;
        font-size: 1.2em;
    }

    .Menu-item.actif .Menu-link{
        transform: rotate(2deg) translateY(14px);
    }

    .Menu-link:hover{
        transform: rotate(2deg) translateY(14px);
        color: #fff;
    }

    .Menu-link span{
        position: absolute;
        bottom: 40px;
        display: block;
        width: 70%;
        padding: 0 15px;
        text-align: center;
        line-height: 1.1em;
    }

    /* Menu réseaux sociaux (et liens programmations pdf) */

    .Menu-rs{
        display: block;
    }

    .Menu-rs.footer{
        margin-top: 15px;
        margin-left: 5px;
    }

    .Menu-rs-item{
        display: inline-block;
        vertical-align: middle;
    }

    .Menu-rs-link{
        display: block;
        transition: all 200ms;
    }

    .Menu-rs-link:hover{
        transform: rotate(-10deg);
    }

    .Footer-content img[alt="Le Cinémateur"] {
        width: 200px; 
        display: inline-block; 
    }
}

/* Menu mobile */

.Menu-mobile{
    display: none;
}

@media screen and (max-width: 1023px) {
    .Header{
        height: 250px;
    }

    .Header-h1{
        text-align: left;
        width: 100%;
    }

    .Header-h1 img{
        margin-top: 20px;
        padding-left: 40px;
        width: 30%;
    }

    #menu-toggle:checked ~ #Menu {
        display: block;
    }

    .Menu-toggle {
        display: none; 
    }

    #menu-toggle:checked ~ #Menu-mobile:after {
        top: 50%;
        transform: rotate3d(0, 0, 1, -45deg); 
        background-color: #d40a11;
    }

    #menu-toggle:checked ~ #Menu-mobile:before {
        top: 50%;
        transform: rotate3d(0, 0, 1, 45deg); 
        background-color: #d40a11;
    }

    #menu-toggle:checked ~ #Menu-mobile i {
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s; 
    }
    
    .Menu-mobile:focus{
        outline: 0;
    }
    

    .Menu{
        display: none;
        z-index: 999999;
        top:95%;
        background-color: #d40a11;
        position: absolute;
        text-align: center;
        line-height: 3cm;
        font-size: 4rem; 
        text-transform: uppercase;
        box-shadow: 0 0 35px #000;
        width: 100%;
        height: 450px;
    }
    
    ul.Menu-rs.header{
        margin-top: 20px;
        padding: 5px;
    }

    .Menu-item{
        margin: 20px; 
    }

    .Menu-link.ticket1{
        background: none;
        text-decoration: none;
        color: #fff;
        font-family: 'open sans', 'sans serif';
    }
    
    .Menu-mobile{
        display: inline-block;
        background-color: transparent;
        border: none;
        outline: none;
        width: 110px;
        height: 70px;
        position: relative;
        padding: 0;
        cursor: pointer;
        right: 50px;
        top: 80px;
        position: absolute;
        z-index: 9999999;
    }

    .Menu-mobile i {
        transform: translateY(30px); 
    }

    .Menu-mobile i, .Menu-mobile:before, .Menu-mobile:after{
        display: block;
        width: 100%;
        height: 8px;
        background-color: #d40a11;
        border-radius: 2px;
        transition-property: transform, top, -webkit-transform;
        will-change: transform, top;
        transition: .25s;
    }

    .Menu-mobile:before, .Menu-mobile:after{
        content: '';
        position: absolute;
        left: 0;
    }

    .Menu-mobile:before{
        top: 0;
    }

    .Menu-mobile:after{
        bottom: 0;
    }

    .Menu-rs{
        display: block;
    }

    .Menu-rs.footer{
        margin-top: 15px;
        margin-left: 5px;
    }

    .Menu-rs-item{
        display: inline-block;
        vertical-align: middle;
    }

    .Menu-rs-link{
        display: block;
        transition: all 200ms;
    }

    .Menu-rs-link:hover{
        transform: rotate(-10deg);
    }

    .grid-3-small-1 {
        grid-template-columns: 1fr;
    }
    
    .Footer-content {
        padding-top: 30px; 
        padding-bottom: 30px;
    }

    .Footer-item {
        text-align: center;
        margin-bottom: 40px; 
        padding-left: 0; 
        font-size: 2.3em;
    }

    .Footer-item .fa-solid {
        position: static; 
        display: inline;
        margin-right: 20px;
        margin-bottom: 0;
        vertical-align: middle;
        font-size: 1.5em;
    }
    
    .Footer-item.Footer-links {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 10px 30px;
        padding-left: 0;
    }

    .Footer-links li {
        margin-bottom: 0; 
        display: inline-block;
    }

    .Menu-rs-item a img {
        width: 80px;
        height: 80px;
    }

    .Footer-content img[alt="Le Cinémateur"] {
        width: 300px; 
        display: inline-block; 
    }

    .Menu-rs.footer {
        margin-top: 10px; 
        margin-left: 100px;
    }

    .Menu-rs-item{
        display: inline-block;
        vertical-align: middle;
        margin: 0 10px;
    }

    .Footer-version{
        font-size: 30px;
        font-weight: bold;
    }
}

.Menu-item.actif .Menu-link{
    color: #000;
}


/* Rouge */
.ticket1{
    background: url('../affiche/ticket-cinema.svg') no-repeat;
}

/* Blanc */
.ticket2{
    background: url('../affiche/ticket-cinema-blanc.svg') no-repeat;
}

.ticket1, .ticket2{
    font-family: "Aldo SemiBold", 'Open sans', 'sans serif';
    background-size: cover;
}

/*  ****************************************************************************
        MODIFIEURS
    ****************************************************************************/

.listReset{
    list-style-type: none;
    margin: 0 100px;
    padding: 0;
}
