/*
Michail Kanakas
10.01.2024
CSS pour la page event
*/

.fadeDuTitre {
    position: relative;
    width: 100%;
    height: 2.5vw;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

#contenu {
    color: black;
}

#contenu .titre {
    display: flex;
    align-items: center;
    font-size: 1.6vw;
    margin-left: 22.5vw;
    margin-right: 22.5vw;
    transition: all 0.4s ease-in-out;
}

#contenu .titre:hover {
    transition: all 0.4s ease;
    transform: scale(1.04);
}

#contenu .cacher {
    text-align: justify;
    font-family: "Roboto flex", serif;
    font-weight: 500;
    font-size: 1.25vw;
    margin-left: 22.5vw;
    margin-right: 22.5vw;
    margin-top: 1vw;
    display: none;
}

#contenu svg {
    height: 1.6vw;
    margin-right: 1vw;
    transition: all 0.3s ease-in-out;
}

#contenu path {
    transition: all 0.3s ease-in-out;
}

#contenu h2 {
    margin-bottom: 1vw;
    margin-top: 1vw;
}

#contenu h2,
#contenu svg {
    cursor: pointer;
}

#contenu #dernierArticle {
    padding-bottom: 2vw;
}

#contenu li {
    margin-top: 0.15vw;
    margin-bottom: 0.15vw;
}

#contenu span {
    font-weight: 900;
}

#contenu p {
    margin-left: 0;
    margin-right: 0;
}

#events-container section {
    background-color: white;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-bottom: 3vw;
    color: black;
    box-shadow: 0px 18px 30px rgba(0, 0, 0, 0.07);
    padding: 1vw;
    border-radius: 1.5vw;
    transition: all 0.4s ease-out;
}

#events-container section:hover {
    transition: all 0.4s ease;
    transform: scale(1.025);
}

#events-container .pays,
#events-container .date,
#events-container h3,
#events-container .numeroEvent {
    color: #929292;
}

#events-container .nomEvent {
    color: #D20A0A;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 3vw;
    margin-left: 0.5vw;
}

#events-container .numeroEvent {
    margin-top: 0;
    font-size: 2.25vw;
    margin-left: 0.5vw;
}

#events-container .adresse {
    margin-bottom: 0;
    margin-left: 0.5vw;
    font-size: 2.25vw;
    margin-top: 0;
}

#events-container .arene {
    margin-bottom: 0;
    margin-left: 0.5vw;
    font-size: 2.25vw;
    margin-top: 3vw;
}

#events-container .date {
    margin-top: 0;
    margin-bottom: 0vw;
    margin-right: 0.5vw;
    text-align: end;
    font-size: 2.4vw;
}

#events-container .heure {
    margin-top: 0;
    margin-right: 0.5vw;
    text-align: end;
    font-size: 2.2vw;
    margin-bottom: 0vw;
}

#events-container h3 {
    margin-bottom: 0;
    margin-right: 0.5vw;
    margin-top: 6vw;
    font-size: 2.5vw;
    transition: all 0.4s ease-out;
}

#events-container h3:hover {
    transition: all 0.4s ease;
    transform: scale(1.04);
}

#events-container a {
    text-decoration: none;
    color: #929292;
}

.event {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#message {
    color: black;
    display: flex;
    justify-content: space-between;
    padding-top: 2vw;
    margin-left: 12.5vw;
    margin-right: 12.5vw;
    font-size: 2.6vw;
    margin-bottom: 2vw;
    align-items: center;
}

#message p {
    margin: 0;
}

#message .site {
    font-size: 3vw;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#message .site:hover {
    transform: scale(1.05);
}

#message a {
    text-decoration: none;
    color: #D20A0A;
}

header svg path {
    transition: all 0.4s ease-out;
}

header svg:hover path {
    fill: #D20A0A;
    transition: all 0.4s ease;
}

@media (max-width: 650px) {

    #contenu li,
    #contenu span,
    #contenu p {
        font-size: 2.25vw;
    }

    #contenu h2 {
        font-size: 2.75vw;
    }

    #contenu .titre,
    #contenu .cacher {
        margin-left: 12.5vw;
        margin-right: 12.5vw;
    }
}