/**handles:shared-style**/
/*
    BASES
    El contenidor principal te un padding horitzontal var(--wp--custom--gap--horizontal)
    Si volem contingut 100% hem de fer el contingut + 2 cops el gap horitzontal;
*/

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


#container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.wp-block-cover__inner-container>*,
.entry-content>* {
    margin: 0 auto;
}

.wp-block-cover__inner-container>*+*,
.entry-content>*+* {
    margin-top: var(--wp--style--block-gap);
    margin-bottom: 0;
}

.entry-content>*:not(.alignfull):not(.alignwide) {
    max-width: var(--wp--style--global--content-size);
}

.wp-block-cover,
.alignwide,
.alignfull {
    margin-top: var(--wp--style--block-gap);
    margin-bottom: var(--wp--style--block-gap);
}

.wp-block-image {
    margin-bottom: var(--wp--style--block-gap);
}

.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

.entry-content>.alignfull {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* .alignfull.has-background>.alignfull {
    margin-left: calc(-1 * var(--wp--style--block-gap));
    margin-right: calc(-1 * var(--wp--style--block-gap));
} */

.wp-block-cover,
.has-background:not(.wp-block-button__link, .wp-block-separator, .wp-block-media-text) {
    padding: var(--wp--style--block-gap);
}


.has-background.wp-block-separator,
.has-background.wp-block-media-text {
    padding: 0;
}

h1.alignfull:not(.has-background),
h2.alignfull:not(.has-background),
h3.alignfull:not(.has-background),
h4.alignfull:not(.has-background),
h5.alignfull:not(.has-background),
h5.alignfull:not(.has-background) {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h5.has-background {
    padding-left: var(--wp--style--block-gap);
    padding-right: var(--wp--style--block-gap);
}

.is-style-list-columns-2,
.is-style-list-columns-3 {
    break-inside: avoid;
    page-break-inside: avoid;
}

.is-style-list-columns-2 {
    columns: auto 2;
    column-gap: calc(2 * var(--wp--style--block-gap));
}

.is-style-list-columns-3 {
    columns: auto 3;
    column-gap: calc(2 * var(--wp--style--block-gap));
}



/* images */

figure[class*="is-style-aspect-ratio"] img {
    object-fit: cover;
}

.is-style-aspect-ratio-1_1 img {
    aspect-ratio: 1/1;
}

.is-style-aspect-ratio-4_3 img {
    aspect-ratio: 4/3;
}

.is-style-aspect-ratio-3_4 img {
    aspect-ratio: 3/4;
}

.is-style-aspect-ratio-3_2 img {
    aspect-ratio: 3/2;
}

.is-style-aspect-ratio-2_3 img {
    aspect-ratio: 2/3;
}

.is-style-aspect-ratio-16_9 img {
    aspect-ratio: 16/9;
}

.is-style-aspect-ratio-9_16 img {
    aspect-ratio: 9/16;
}

.is-style-aspect-ratio-21_9 img {
    aspect-ratio: 21/9;
}

.is-style-aspect-ratio-9_21 img {
    aspect-ratio: 9/21;
}

.is-style-aspect-ratio-1_1 img {
    aspect-ratio: 1/1;
}


/*** FOOTER ***/


.footer-web {
    padding: 40px 30px 0!important;
    color: var(--wp--preset--color--theme-green-3);
    font-weight: 500;
    font-size: 14px;
}
.footer-web .footer-info {
    padding-top: 40px!important;
    border-top: 1px solid var(--wp--preset--color--theme-green-3);
    gap: 40px;
}
.footer-web a, .footer-copy a {
    transition: .3s all;
    color: black;
}
.footer-web a:hover, .footer-copy a:hover {
    color: var(--wp--preset--color--theme-green-1);
}
.footer-web .footer-menus p {
    margin-top: 13px;
}
.footer-web .footer-menus:nth-child(4) {
    min-width: 180px;
}
.footer-web .reserver-btn {
    margin-top: 20px;
}
.footer-web .reserver-btn a {
    border-color: var(--wp--preset--color--theme-green-3);
    padding: 12px 25px;
}
.footer-web .reserver-btn a img {
    filter: initial;
}
.footer-web .reserver-btn a:hover {
    color: white;
}
.footer-web .reserver-btn a:hover img {
    filter: invert();
}

.footer-copy {
    padding: 20px 20px 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: black;
}
.footer-copy .footer-social a {
    padding: 13px;
    border-radius: 50px;
    border: 1px solid black;
    width: 55px;
    height: 55px;
    background-color: transparent;
    transition: .3s all;
    text-align: center!important;
}
.footer-copy .footer-social a img {
    width: 22px!important;
    height: 22px!important;
    transition: .3s all;
}
.footer-copy .footer-social a:hover {
    background-color: var(--wp--preset--color--theme-green-3);
}
.footer-copy .footer-social a:hover img {
    filter: invert();
}
.footer-copy .copy-info {
    display: inline-flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.footer-copy .copy-info > * {
    padding: 0;
    position: relative;
    margin: 0!important;
}
.footer-copy .copy-info > p:not(:last-child):after, .footer-copy .copy-info > div:after {
    content: "";
    position: absolute;
    right: -11px;
    top: 5px;
    width: 1px;
    height: 16px;
    background-color: var(--wp--preset--color--theme-green-3);
}
.footer-copy .copy-info > p:nth-child(2) br, .footer-copy .copy-info > div figure {
    display: none;
}


/*** TEMA ***/


img {
    object-fit: cover;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    color: var(--wp--preset--color--theme-green-3);
}
h1 {
    margin: 0 0 50px 0;
}
h1 sup, h2 sup, h2 sub {
    font-family: var(--wp--preset--font-family--montserrat);
    display: block;
    font-weight: 700;
    color: var(--wp--preset--color--theme-green-1);
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
}
.imagen-intro p sub {
    font-family: var(--wp--preset--font-family--montserrat);
    display: table;
    margin: 0 auto;
    font-weight: 500;
    letter-spacing: 20px;
    font-size: 25px;
    position: relative;
}
.imagen-intro p sub:before, .imagen-intro p sub:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -160px;
    width: 140px;
    height: 1px;
    background-color: white;
}
.imagen-intro p sub:after {
    left: initial;
    right: -140px
}

.rounded, .rounded > img {
    border-radius: 20px;
}

.bg-color {
    background-color: var(--wp--preset--color--theme-green-2);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.imagen-intro > .wp-block-cover > img {
    min-height: 65vh;
}
.imagen-intro > .wp-block-cover > .wp-block-cover__inner-container {
    padding: 0 40px;
}
.home .imagen-intro > .wp-block-cover > img {
    min-height: 100vh;
}
.imagen-intro p {
    font-family: var(--wp--preset--font-family--source-serif);
    font-size: var(--wp--preset--font-size--h-1);
    line-height: 1em;
}

.block-pek {
    max-width: 905px!important;
    margin: 0 auto;
}

.wp-block-button.button-2 a {
    background-color: var(--wp--preset--color--theme-green-1);
    color: white;
}
.wp-block-button.button-2 a:hover {
    background-color: var(--wp--preset--color--theme-green-3);
}

/*** ACCUEIL ***/

.titre-top-accueil {
    line-height: 1.2!important;
}

.page-intro {
    margin-top: 0;
    padding: 140px 30px 60px;
}
.page-intro h1 {
    font-size: var(--wp--preset--font-size--h-2);
}
.ouverture-accueil {
    position: absolute;
    background-color: var(--wp--preset--color--theme-green-1);
    left: 0;
    top: 40%;
    width: 175px;
    padding: 20px 40px 20px 10px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}
.ouverture-accueil figure {
    margin-bottom: 5px;
}
.ouverture-accueil h5 {
    margin-top: 0;
    color: white;
}

.locations-accueil {
    padding: 40px 30px;
}
body.home .locations-accueil {
    padding: 80px 0px;
}

.vercors-accueil {
    padding: 80px 30px;
}
.vercors-accueil h2 {
    padding-bottom: 50px;
}
.vercors-accueil .wp-block-columns:nth-child(2) .wp-block-column:nth-child(odd) {
    padding-top: 60px;
}
.vercors-accueil .wp-block-columns:nth-child(2) .wp-block-column:nth-child(4) {
    padding-top: 10px;
}
.vercors-accueil .wp-block-custom-banner figure {
    border-radius: 20px;
    overflow: hidden;
}
.vercors-accueil .wp-block-custom-banner img {
    min-height: 400px;
    max-height: 400px;
    transition: .3s all;
}
.vercors-accueil .wp-block-custom-banner:hover img {
    transform: scale(1.1);
}
.vercors-accueil h6 {
    color: var(--wp--preset--color--theme-black);
    font-weight: 600;
    transition: .3s all;
}
.vercors-accueil .wp-block-custom-banner:hover h6 {
    color: var(--wp--preset--color--theme-green-1);
}

.banner-block .wp-block-cover {
    min-height: 550px;
}
.avis-accueil {
    position: relative;
    margin-top: -50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 80px 30px;
    z-index: 1;
}
.avis-accueil h2 {
    padding-bottom: 40px;
}
.avis-accueil .wp-gr:not(.wp-dark) .grw-review-inner.grw-backgnd {
    background: white !important;
    box-shadow: 0px 0px 11px #00000020!important;
    border-radius: 10px !important;
}
.avis-accueil .wp-gr .grw-review .wp-google-feedback {
    height: 140px!important;
}
.avis-accueil .wp-gr .wp-google-text {
    color: var(--wp--preset--color--theme-text) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 23px !important;
    font-family: var(--wp--preset--font-family--montserrat) !important;
}
.avis-accueil .wp-gr .wp-google-rating {
    display: none;
}
.avis-accueil .wp-gr .wp-google-place .wp-star svg {
    width: 30px !important;
    height: 30px !important;
}
.site-footer .wp-gr .wp-google-rating {
    color: black !important;
}
.site-footer .wp-google-stars {
    margin: 10px 0 !important;
    display: inline-block;
}
.site-footer .wp-gr .wp-google-powered img {
    width: 130px !important;
    max-width: 100% !important;
}

/*** CAMPING ***/

.page-intro .fotos-intro .wp-block-column:nth-child(2) {
    margin-top: -290px;
}
.page-intro.intro-vercors .fotos-intro .wp-block-column:nth-child(1) {
    margin-top: -170px;
}
.page-intro.intro-vercors {
    padding-top: 160px;
}

.chiffres-camping {
    padding: 80px 50px;
}
.chiffres-camping .wp-block-column:nth-child(2) figure:nth-child(3) {
    padding-top: 25px;
}

.equipements-camping.block-editor-block-list__layout .wp-block-cover__inner-container h4, .equipements-camping.block-editor-block-list__layout .wp-block-cover__inner-container p {
    color: white;
}
.equipements-camping.block-editor-block-list__layout .wp-block-cover__inner-container img {
    filter: invert();
}

.equipements-camping {
    padding: 80px 30px;
}
.equipements-camping h2 {
    padding-bottom: 40px;
}
.equipements-camping .les-equipements {
    font-size: 14px;
    font-weight: 500;
    padding: 0 50px;
}
.equipements-camping .les-equipements h4 {
    margin-bottom: 0;
    color: var(--wp--preset--color--theme-text);
}
.equipements-camping .les-equipements p {
    color: var(--wp--preset--color--theme-text);
}

.icones-galerie {
    padding: 10px 30px;
    margin-bottom: 50px;
}
.icones-galerie > .wp-block-columns > .wp-block-column:first-child {
    padding: 30px;
}
.icones-galerie .galeria-slider {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.icones-galerie .galeria-slider .image-wrapper img {
    max-height: 450px;
    min-height: 450px;
}
.iconos-servicios {
    margin-top: 30px;
    font-weight: 600;
}
.iconos-servicios .wp-block-group {
    gap: 15px;
}

.texte-3images {
    padding: 10px 30px;
}

/*** LOCATIONS ***/

.decouvrez-emplacements .wp-block-cover {
    min-height: 520px;
    max-height: 520px;
}

.location-info > .wp-block-columns {
    gap: 50px;
}
.location-info .iconos-locations {
    display: flex;
    flex-direction: row;
    /* margin-top: -20px; */
}
.location-info .iconos-locations img {
    filter: invert(22%) sepia(19%) saturate(1221%) hue-rotate(64deg) brightness(93%) contrast(89%);
}
.location-info .iconos-locations .iconos-locations {
    display: flex;
    gap: 0 20px;
    flex-wrap: wrap;
}
.location-info .iconos-locations .iconos-locations div {
    display: flex;
    gap: 10px;
    padding: 15px 0 5px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.equipements-location {
    padding: 40px 30px 60px;
}
.equipements-location .iconos-servicios .wp-block-group .wp-block-group {
    border-bottom: 1px solid rgba(34, 34, 34, 0.10);
    padding: 0 0 15px;
    width: 100%;
}
.equipements-location .iconos-servicios .wp-block-group .wp-block-group p {
    flex-basis: calc(100% - 50px);
}

.tarifs-location h2 sub {
    text-transform: initial;
}

.autres-locations {
    padding: 50px 30px 0px;
    overflow: hidden;
}
.autres-locations h2 {
    padding: 0 0 40px 50px;
}

/*** ACTIVITÉS ***/

.les-activites {
    padding: 70px 30px!important;
}
.les-activites .wp-block-columns {
    display: flex;
    flex-wrap: wrap!important;
}
.les-activites .wp-block-column {
    flex-basis: 30%!important;
    padding-bottom: 40px;
}
.les-activites .wp-block-column:nth-child(2), .les-activites .wp-block-column:nth-child(5), .les-activites .wp-block-column:nth-child(8) {
    padding-top: 60px;
}
.les-activites img {
    min-height: 500px;
    max-height: 500px;
    transition: .4s all;
}
.les-activites .wp-block-buttons {
    margin-top: 25px;
}

.texte-3images.vercors {
    padding: 60px 30px;
}
.texte-3images.vercors .le-vercors .wp-block-column:nth-child(2) {
    padding-top: 60px;
}


/*** CONTACT ***/

.contact-info h3 {
    padding-bottom: 20px;
}
.contact-info p:nth-child(3) {
    margin-top: 2px;
    line-height: 26px;
    padding-bottom: 5px;
    padding-left: 35px;
}
.contact-info a {
    font-size: 16px;
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--wp--preset--color--theme-green-3);
}
.contact-info img {
    filter: invert(25%) sepia(23%) saturate(821%) hue-rotate(64deg) brightness(94%) contrast(98%);
}

.comment-venir {
    margin-top: 30px;
    padding: 60px 0 0;
}
.comment-venir h2 {
    padding-bottom: 20px;
}
.comment-venir .wp-block-columns ul {
    margin-top: 10px;
}
.comment-venir .wp-block-columns:not(.iframe-map) {
    padding: 0 30px;
}



.legal-info h5 {
    margin: 40px 0 10px;
}