html, body {
    color: var(--wp--preset--color--bleu-fonce);
    overflow-x: hidden;
}

html.has-modal-open {
    overflow: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wp--preset--font-family--citrusgothic);
    font-weight: normal;
}

.header_group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.wp-block-navigation__responsive-container {
    position: absolute;
    top: 55px;
    left: auto;
    right: -35px;
    width: 286px;
    min-height: 240px;
    padding: 40px 64px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 17px;
}

.wp-block-navigation__responsive-container.is-menu-open {
    height: auto;
    padding: 40px 64px;
}

.wp-block-navigation__responsive-container-open {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 47px;
    width: 40px;
}

.wp-block-navigation__responsive-container-open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='43' height='22' viewBox='0 0 43 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='1' x2='43' y2='1' stroke='white' stroke-width='2'/%3E%3Cline y1='11' x2='43' y2='11' stroke='white' stroke-width='2'/%3E%3Cline y1='21' x2='43' y2='21' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 0;
}

.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 0 !important;
}

.wp-block-navigation__responsive-container-close {
    font-size: 0 !important;
}

.wp-block-navigation__responsive-container-close::before {
    content: "X";
    font-size: 16px;
}

.trp-block-container {
    margin-right: 10px;
}

.trp-language-switcher {
    position: relative;
    height: auto;
    width: auto;
}

.trp-language-switcher::after {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -5px;
    display : inline-block;
    height : 0;
    width : 0;
    border-top : 5px solid var(--wp--preset--color--blanc);
    border-right : 5px solid transparent;
    border-left : 5px solid transparent;
}

.trp-language-switcher:focus .trp-ls-shortcode-language, 
.trp-language-switcher:hover .trp-ls-shortcode-language {
    padding: 0;
}

.trp-language-switcher > div {
    width: auto !important;
    padding: 0;
    background-image: none;
    background-color: transparent;
    border: none;
    cursor: pointer !important;
}

.trp-language-switcher > div > a {
    font-weight: 600;
    color: var(--wp--preset--color--blanc);
    cursor: pointer !important;
}

.trp-language-switcher > div > a:hover {
    color: var(--wp--preset--color--blanc);
    background-color: transparent;
}

.home .wp-block-cover, .wp-block-cover-image {
    min-height: 830px;
}

.wp-block-cover .wp-block-image {
    display: flex;
    justify-content: center;
}

.deco_bar {
    display: flex;
    align-items: center;
    height: 155px;
    width: 155px;
}

.deco_bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/bar.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    animation: sailing alternate 5s ease-in-out infinite;
    z-index: -1;
}

.deco_bar::after {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    height: 500px;
    width: 100%;
    background-image: url(../images/line.svg);
    background-position: center;
    background-repeat: repeat-y;
    background-size: contain;
    transform: translateX(-50%);
    z-index: -2;
}

@keyframes sailing {
    0% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(-180deg);
    }
    100% {
        transform: rotate(0);
    }
}

.wp-block-cover::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 100px;
    width: 100%;
    background-image: url(../images/deco_banniere.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.banniere {
    height: 350px;
    min-height: 350px !important;
}

.banniere::after {
    display: none;
}

.wp-block-button {
    font-family: var(--wp--preset--font-family--citrusgothic);
    font-size: var(--wp--preset--spacing--40);
}

.wp-block-button.is-style-deco {
    position: relative;
}

.wp-block-button.is-style-deco::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -11px;
    width: 35px;
    height: 50px;
    background-image: url(../images/Vague.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.wp-block-button.is-style-deco .wp-block-button__link {
    padding: 8px 25px;
    font-size: var(--wp--preset--font-size--medium);
    background-color: var(--wp--preset--color--bleu-fonce);
    border-radius: 7px;
}

.wp-block-button.is-style-deco .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--bleu-gris);
}

.wp-block-button.is-style-outline {
    color: var(--wp--preset--color--orange);
    border-color: var(--wp--preset--color--orange);
}

.wp-block-button.is-style-outline:hover .wp-block-button__link {
    color: var(--wp--preset--color--blanc);
    background-color: var(--wp--preset--color--orange);
}

.media_text_deco {
    position: relative;
}

.media_text_deco::before {
    content: "";
    position: absolute;
    top: -70px;
    left: calc(100% + 40px);
    height: 280px;
    width: 230px;
    background-image: url(../images/ancre.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.media_text_deco::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -190px;
    height: 250px;
    width: 250px;
    background-image: url(../images/rose-des-vents.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.media_text_deco--alt::before {
    top: auto;
    right: -80px;
    left: auto;
    bottom: 0;
    background-image: url(../images/vagues_grandes.png);
    pointer-events: none;
}

.media_text_deco--alt::after {
    top: -50px;
    left: 0;
    bottom: auto;
    background-image: url(../images/meduse.png);
    opacity: 0.5;
    pointer-events: none;
}

.group_frame{
    background-image: url(../images/fond_marin.png);
    background-position: top center;
    background-size: cover;
}

.groupe_pieuvre {
    background-image: url(../images/pieuvre.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 250px;
}

.container_loop_rooms {
    position: relative;
}

.container_loop_rooms::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    background-color: var(--wp--preset--color--orange);
    pointer-events: none;
    z-index: -2;
}

.container_loop_rooms::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 7%;
    height: 200px;
    width: 200px;
    background-image: url(../images/coquillage.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.loop_rooms ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wp--preset--spacing--70);
    justify-content: center;
}

.loop_rooms ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0;
}

.loop_alternate ul li:nth-of-type(even) .ibis-chambre__container {
    flex-direction: row-reverse;
}

.wp-block-query-pagination {
    justify-content: center;
    margin-bottom: 70px !important;
}

.wp-block-query-pagination a, 
.wp-block-query-pagination a:visited, 
.wp-block-query-pagination .page-numbers, 
.wp-block-query-pagination .page-numbers:visited {
    padding: 10px;
    text-decoration: none;
    border-radius: 7px;
    color: var(--wp--preset--color--blanc);
    background-color: var(--wp--preset--color--bleu-gris);
}

.wp-block-query-pagination a:hover, 
.wp-block-query-pagination .page-numbers:hover {
    background-color: var(--wp--preset--color--bleu-fonce);
}

.page-numbers.current,
.page-numbers.current:hover {
    background-color: var(--wp--preset--color--orange);
}

.wp-block-query-pagination-next, 
.wp-block-query-pagination-previous {
    padding: 10px 20px;
}

.is-style-centered {
    display: flex;
    justify-content: center;
}

footer.wp-block-template-part {
    position: relative;
    margin-top: 0;
}

footer.wp-block-template-part::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    height: 100px;
    width: 100%;
    background-image: url(../images/deco_footer.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.wp-social-link {
    background-color: var(--wp--preset--color--orange);
}

footer.wp-block-template-part > div > div + div {
    border-left: 1px solid var(--wp--preset--color--bleu-gris);
}

footer .wp-block-page-list {
    padding: 0;
}

footer .wp-block-page-list li {
    margin-bottom: 5px;
    list-style: none;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer_list img {
    min-width: 32px;
}

@media all and (max-width: 1100px) {
    footer.wp-block-template-part > .wp-block-group {
        display: flex;
        flex-direction: column;
    }

    footer.wp-block-template-part > div > div {
        padding: var(--wp--preset--spacing--70) 0;
    }

    footer.wp-block-template-part > div > div + div {
        border-left: none;
        border-top: 1px solid var(--wp--preset--color--bleu-gris);
    }
}

@media all and (max-width: 900px) {
    .home .wp-block-cover, .wp-block-cover-image {
        min-height: 500px;
    }

    .header_group {
        flex-direction: column-reverse;
    }

    .header_group > .wp-block-group {
        width: 100%;
    }

    .header_group--alt > .wp-block-group {
        justify-content: space-between;
    }

    .header_group > .wp-block-group > .wp-block-group {
        justify-content: space-between;
        width: 100%;
    }

    .wp-block-site-logo img {
        max-width: 150px;
    }

    .wp-block-cover h1.has-grand-titre-font-size {
        font-size: var(--wp--preset--font-size--moyen-titre) !important;
    }

    .services-liste .wp-block-image {
        width: 80px;
    }

    .services-liste h4.has-petit-titre-font-size {
        font-size: var(--wp--preset--font-size--tres-grand-texte) !important;
    }

    .wp-block-media-text {
        flex-direction: column;
        align-items: center;
    }

    .media_text_deco::before,
    .media_text_deco::after {
        display: none;
    }

    .deco_bar {
        display: none;
    }

    footer > .wp-block-group > .wp-block-group {
        padding: var(--wp--preset--spacing--50) !important;
    }
}

@media all and (max-width: 800px) {
    .loop_alternate ul li:nth-of-type(even) .ibis-chambre__container {
        flex-direction: column;
    }
}

@media all and (max-width: 655px) {
    html.has-modal-open {
        overflow: hidden;
    }

    .header_group {
        padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--60) !important;
    }

    .wp-block-navigation__responsive-container {
        position: fixed;
        top: 0;
        right: auto;
        left: 0;
        width: calc(100vw - 64px * 2);
        border-radius: 0;
    }

    .wp-block-cover {
        align-items: flex-end;
        padding-bottom: 50px;
    }

    .wp-block-cover .wp-block-image {
        margin-bottom: var(--wp--preset--spacing--60);
    }

    .carrousel-nav {
        font-size: 0;
    }
}