* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: white;
    color: #111;
}

a,
a:visited,
a:active {
    color: #111;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* PAGE D'ACCUEIL */

.home {
    background-image: url("image001.jpg");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.overlay {
    position: fixed;
    left: 60px;
    bottom: 60px;
    z-index: 10;
}

.overlay h1 {
    color: white;
    font-size: 90px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.overlay nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.overlay nav a,
.overlay nav a:visited {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
}

.overlay nav a:hover {
    text-decoration: underline;
}

/* PAGES INTERNES */

.menu-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 55px 35px 120px 35px;
}

.menu-page h1 {
    font-size: 70px;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 1;
}

.menu-page h1 a,
.menu-page h1 a:visited {
    color: #111;
    text-decoration: none;
}

.menu-page nav {
    padding-top: 15px;
    text-align: right;
}

.menu-page nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.menu-page nav a,
.menu-page nav a:visited {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
}

.menu-page nav a:hover {
    text-decoration: underline;
}

/* CONTENU */

.page {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 120px;
}

.page h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 40px;
}

.page p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

/* OEUVRES */

.page-oeuvres {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 120px;
}

.oeuvre {
    margin-bottom: 160px;
}

.image-hover {
    position: relative;
    width: 520px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.image-hover img {
    width: 100%;
    height: auto;
    display: block;
}

.infos-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.infos-image p {
    font-size: 16px;
    line-height: 1.5;
}

.image-hover:hover .infos-image {
    opacity: 1;
}

.image-detail {
    display: block;
    width: auto;
    max-width: 1000px;
    max-height: 80vh;
    height: auto;
    margin: 80px auto 0 auto;
}

/* VIDÉO */

.video {
    width: 760px;
    max-width: 100%;
    margin-bottom: 15px;
}

.video iframe {
    width: 100%;
    height: 430px;
    border: none;
}

/* FOOTER */

footer {
    padding: 40px 35px;
}

footer p {
    font-size: 14px;
    color: #555;
}

/* MOBILE */

@media screen and (max-width: 768px) {
    .overlay {
        left: 25px;
        bottom: 25px;
    }

    .overlay h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .overlay nav ul {
        display: block;
    }

    .overlay nav li {
        margin-bottom: 8px;
    }

    .menu-page {
        display: block;
        padding: 30px 25px 80px 25px;
    }

    .menu-page h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .menu-page nav {
        text-align: left;
        padding-top: 0;
    }

    .menu-page nav ul {
        display: block;
    }

    .menu-page nav li {
        margin-bottom: 8px;
    }

    .menu-page nav a {
        font-size: 15px;
    }

    .page,
    .page-oeuvres {
        padding-left: 25px;
        padding-right: 25px;
    }

    .page p {
        font-size: 16px;
    }

    .image-hover {
        width: 100%;
    }

    .infos-image {
        opacity: 1;
        position: relative;
        background: none;
        color: #111;
        padding: 15px 0 0 0;
    }

    .image-detail {
        max-width: 100%;
        max-height: none;
    }

    .video iframe {
        height: 250px;
    }
}