* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.header[data-detached=true] {
    backdrop-filter: blur(12px);
}

.header {
    padding: .5rem .5rem;
    background-color: #000000;
    display: flex;
    color: #eceff1;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: .2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);

    font-family: "Akaya Kanadaka", system-ui;


}

.header>* {
    font-family: "Akaya Kanadaka", system-ui;
}

nav {
    display: flex;
    gap: 10px
}

nav>a,
nav>a:visited,
footer a,
footer a:visited {
    text-decoration: none;
    color: white;
}

nav>a:hover,
nav>a:active,
footer a:hover,
footer a:active {
    text-decoration: underline;

}

p {
    text-align: justify;
}

section {
    margin-top: 50px;
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: 99vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

#hero {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
}

#hero>.fondVideo>video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.herofilter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    filter: blur(5px);

}

.heroContent {
    position: absolute;
    bottom: 10%;
    left: 0;
    text-align: center;
    width: 100%;
    font-family: "Akaya Kanadaka", system-ui;
    color: white;
    font-size: 2rem;
}

.btn {
    padding: 10px 20px;
    background-color: rgb(35, 129, 148);
    color: white;
    border-radius: 7px;
    box-shadow: 2px 2px 3px 0px #000000;
    text-decoration: none;
}

.btn:hover,
.btn:active {
    padding: 10px 20px;
    background-color: rgb(59, 200, 229);
    color: white;
    border-radius: 7px;
    box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, .5);
    text-decoration: none;
}

.ligne {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: start;
    font-size: 1.5rem;
}

.col>* {
    margin: 10px 0;
}

.ligne>.col {
    min-width: 300px;
    width: 40%;
}

.vignette {
    min-width: 300px;
    aspect-ratio: 1/1;
    width: 40%;
    object-fit: cover;
    box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, .5);
}

h2 {
    font-family: "Akaya Kanadaka", system-ui;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-weight: 800;
    text-transform: uppercase;
}

li {
    margin-left: 25px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 15px;
    padding: 15px;
    width: 300px;
    border-radius: 7px;
    box-shadow: 2px 2px 3px 0px #000000;
    background-color: white;
}

.card>img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#evenement,
#contact {
    background-color: rgb(59, 200, 229);
}

footer {
    padding: .5rem .5rem;
    background-color: black;
    display: flex;
    color: #eceff1;
    align-items: center;
    text-align: center;
    justify-content: center;

}

@media screen and (max-width:800px) {
    .ligne {
        flex-direction: column;
        align-items: center;
    }

}