/*!
Theme Name: STARTEO Starter Theme
Author: Starteo
Author URI: https://www.starteo.pro
Description: 
Version: 1.0
Requires at least: 5.0
Tested up to: 5.7
Requires PHP: 7.2
Text Domain: gbdi-starter
*/

/* Don't overwrite this file. Compile "/assets/main.(less|scss)" to "/assets/css/main.css" */

/* From http://codex.wordpress.org/CSS */

/* GENERAL */
/*
@font-face {
	font-family: "Ganton";
	src: url(assets/_fonts/Ganton.otf) format("opentype");
}
*/
@font-face {
  font-family: "Kabuti Hitam";
  src: url(assets/_fonts/KabutHitam.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Pluto";
  src: url(assets/_fonts/PlutoRegular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Pluto";
  src: url(assets/_fonts/PlutoHeavy.otf) format("opentype");
  font-weight: 900;
  font-style: normal;
}

:root {
  font-size: 112.5%;

  --font-family-pluto: "Pluto", sans-serif;
  --font-family-kabitu-hitam: "Kabuti Hitam", cursive;
  --font-weight-heavy: 900;

  --font-size-15: 0.833rem; /* 15px */
  --font-size-16: 0.888rem; /* 16px */
  --font-size-base: 1rem; /* 18px (BASE) */
  --font-size-20: 1.111rem; /* 20px */
  --font-size-25: 1.388rem; /* 25px */
  --font-size-30: 1.666rem; /* 30px */
  --font-size-35: 1.944rem; /* 35px */
  --font-size-40: 2.222rem; /* 40px */
  --font-size-45: 2.5rem; /* 45px */
  --font-size-50: 2.777rem; /* 50px */

  --color-primary: #deb072;
  --color-black: #000000;
  --color-white: #ffffff;
}

@media (max-width: 992px) {
  :root {
    font-size: 100%;

    --font-size-50: 2.187rem; /* ~35px */
    --font-size-45: 1.875rem; /* ~30px */
    --font-size-40: 1.75rem; /* ~28px */
  }
}

body {
  font-family: var(--font-family-pluto);
  font-size: var(--font-size-base);
  letter-spacing: 1.8px;
  line-height: 1.38;
  color: var(--color-black);
}

.back-to-top {
  display: flex; /* Utilise flex pour centrer le SVG parfaitement */
  align-items: center;
  justify-content: center;
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 999; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  background: var(--color-primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* .back-to-top:hover {
  background-color: #f4c000;
} */

.cm-title-double {
  font-size: var(--font-size-40);
  letter-spacing: 4px;
  line-height: 1.2;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  position: relative;
  display: block;
}

.cm-title-double strong {
  font-weight: normal;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cm-title-double-beige {
  font-size: var(--font-size-40);
  letter-spacing: 4px;
  line-height: 1.2;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  position: relative;
  display: block;
}

.cm-title-double-beige strong {
  font-weight: normal;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cm-title-double-beige strong::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -3%;
  width: 365px;
  height: 65px;
  background-image: url("assets/images/cm-underline-title-beige.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1;
  pointer-events: none;
}

.cm-title-double-white {
  font-size: var(--font-size-40);
  letter-spacing: 4px;
  line-height: 1.2;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  position: relative;
  display: block;
}

.cm-title-double-white strong {
  font-weight: normal;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cm-title-double-white strong::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 2%;
  width: 439px;
  height: 65px;
  background-image: url("assets/images/cm-underline-title-white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1;
  pointer-events: none;
}

.cm-title-page {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-50);
  letter-spacing: 5px;
  line-height: 1.2;
}

.cm-title-page-uppercase {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-50);
  letter-spacing: 5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.cm-title-35 {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-35);
  letter-spacing: 3.5px;
  line-height: 0.8;
}

.cm-subtitle {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-30);
  letter-spacing: 3px;
  line-height: 1.2;
}

.cm-subtitle-uppercase {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-30);
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.cm-intro {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-25);
  letter-spacing: 2.5px;
  line-height: 1.24;
}

.cm-primary {
  color: var(--color-primary);
}

.cm-primary-bg {
  background-color: var(--color-primary);
}

.cm-black-bg {
  background-color: var(--color-black);
}

.cm-white {
  color: var(--color-white);
}

.cm-page {
  padding-top: 150px;
}

.grecaptcha-badge{
  display: none;
}

/* GENERAL */

/* HEADER */
.cm-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 120px;
}

.cm-header-logo {
  padding-left: 0;
}

.cm-header-home-link img {
  max-height: 72px;
}

.navbar-nav {
  gap: 40px;
}

.cm-header-logo-black {
  display: none;
}

.cm-header-logo-white {
  display: block;
}


.cm-header-default .cm-header {
  background-color: var(--color-white);
  width: 100%;
  height: 120px;
  position: relative;
}

.cm-header-default .nav-link {
  color: var(--color-black) !important;
}

.cm-header-default .cm-header-logo-white {
  display: none;
}

.cm-header-default .cm-header-logo-black {
  display: block;
}
/* HEADER */

/* FOOTER */
.cm-footer-contact {
  padding-top: 97px;
  padding-bottom: 157px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7-select,
.wpcf7 textarea {
  width: 100%;
}

::placeholder,
textarea,
label,
select {
  font-weight: var(--font-family-pluto);
  color: var(--color-black);
  font-size: var(--font-size-15);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7-form select {
  border: 2px solid var(--color-primary);
  border-radius: 60px;
  background-color: transparent;
  padding: 16px 18px;
}

.wpcf7-form textarea {
  border: 2px solid var(--color-primary);
  border-radius: 25px;
  background-color: transparent;
  padding: 16px 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  color: var(--color-black) !important;
}

textarea {
  height: 190px;
}

.cm-home-contact-logos .wpcf7-list-item input {
  display: none;
}

.wpcf7-list-item {
  margin: 0 10px 0 0;
  display: inline-block;
}

.wpcf7-list-item-label {
  display: block;
  width: 94px;
  height: 92px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  transition: background-image 0.3s ease;
}

label {
  color: var(--color-primary);
  text-transform: uppercase;
  font-family: var(--font-family-pluto);
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-15);
}

.cm-footer-contact-checkbox p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.wpcf7-list-item:nth-child(1) .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-cervin.png");
  margin-right: 30px;
}
.wpcf7-list-item:nth-child(2) .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-strato1.png");
  margin-right: 30px;
}
.wpcf7-list-item:nth-child(3) .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-strato2.png");
}

.wpcf7-list-item:nth-child(1) .wpcf7-list-item-label:hover,
.wpcf7-list-item:nth-child(1) input:checked + .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-cervin-hover.png");
}
.wpcf7-list-item:nth-child(2) .wpcf7-list-item-label:hover,
.wpcf7-list-item:nth-child(2) input:checked + .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-strato1-hover.png");
}
.wpcf7-list-item:nth-child(3) .wpcf7-list-item-label:hover,
.wpcf7-list-item:nth-child(3) input:checked + .wpcf7-list-item-label {
  background-image: url("assets/images/cm-le-strato2-hover.png");
}

.wpcf7-form input.wpcf7-submit {
  display: inline-block;
  text-align: center;
  height: 58px;
  line-height: 58px;
  padding: 0;
  font-family: var(--font-family-kabitu-hitam);
  font-size: var(--font-size-50);
  color: var(--color-white);
  text-decoration: none;
  border: none;
  background-image: url("assets/images/cm-underline-btn-beige.svg");
  width: 255px;
  height: 58px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: 0.3s;
}

.wpcf7-form input.wpcf7-submit:hover {
  background-image: url("assets/images/cm-underline-title-green.svg");
  color: var(--color-white);
}

.cm-footer {
  margin-bottom: 150px;
}

.cm-footer-separator {
  height: 2px;
  width: 100%;
  background-color: var(--color-black);
  margin-bottom: 84px;
}

.cm-footer-address {
  font-family: var(--font-family-pluto);
  font-size: var(--font-size-25);
}

.cm-footer-phone {
  font-family: var(--font-family-pluto);
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-45);
}

.cm-footer-logo {
  max-height: 100px;
}

.cm-footer-links {
  font-family: var(--font-family-pluto);
  font-size: var(--font-size-15);
}

.cm-footer-links a {
  color: var(--color-black);
}
/* FOOTER */

/* HOME */
.cm-home-banner-wrapper {
  position: relative;
  width: 100%;
  height: 979px;
  overflow: hidden;
}

.cm-home-banner-item img {
  width: 100%;
  height: 979px;
  object-fit: cover;
}

.cm-home-banner-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url("assets/images/cm-deco.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 339px;
  z-index: 10;
  pointer-events: none;
}

.cm-home-chalets {
  padding-top: 205px;
  padding-bottom: 225px;
  position: relative;
  background-image: url("assets/images/cm-home-chalets-bg.png");
  width: 100%;
  height: 1168px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 77px;
}

.cm-home-chalets-deco {
  position: absolute;
  width: 550px;
  height: 240px;
  left: 0;
  top: -170px;
  z-index: 10;
}

.cm-home-chalets-accordion {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  min-height: 644px;
}

.cm-home-chalets-card {
  width: 260px;
  height: 644px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  .cm-home-chalets {
    padding-top: 205px;
    padding-bottom: 225px;
    position: relative;
    background-image: url("assets/images/cm-home-chalets-bg.png");
    width: 100%;
    height: 1168px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 77px;
  }

  .cm-home-chalets-deco {
    position: absolute;
    width: 550px;
    height: 240px;
    left: 0;
    top: -170px;
    z-index: 10;
  }

  .cm-home-chalets-accordion {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    min-height: 644px;
  }

  .cm-home-chalets-card {
    width: 260px;
    height: 644px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: visible !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
  }

  .cm-home-chalets-card.active,
  .cm-home-chalets-card:hover {
    width: 840px !important;
  }

  .cm-home-chalets-accordion:hover .cm-home-chalets-card.active:not(:hover) {
    width: 260px !important;
  }

  .cm-home-chalets-card-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
  }

  .cm-home-chalets-card-content {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -65px;
    left: 65px;
    width: 100%;
    padding-left: 0;
    z-index: 10;
  }

  .cm-home-chalets-card-picto {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    transition: transform 0.5s ease;
  }

  .cm-home-chalets-card-picto img {
    width: 130px;
    height: 134px;
    object-fit: contain;
  }

  .cm-home-chalets-card-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.5s ease;
    padding-left: 20px;
  }

  .cm-home-chalets-card.active .cm-home-chalets-card-text,
  .cm-home-chalets-card:hover .cm-home-chalets-card-text {
    opacity: 1;
    max-width: 600px;
    transform: translateX(0);
  }

  .cm-home-chalets-accordion:hover
    .cm-home-chalets-card.active:not(:hover)
    .cm-home-chalets-card-text {
    opacity: 0 !important;
    max-width: 0 !important;
  }

  .cm-home-chalets-card-title {
    font-weight: var(--font-weight-heavy);
    font-size: var(--font-size-25);
    letter-spacing: 2.5px;
    line-height: 1.24;
    text-transform: uppercase;
    color: var(--color-white);
    margin-top: 10px;
  }

  .cm-home-chalets-card-location {
    font-weight: var(--font-weight-heavy);
    text-transform: uppercase;
    font-size: var(--font-size-15);
    letter-spacing: 1.5px;
    line-height: 1.26;
    color: var(--color-black);
    margin-bottom: 15px;
  }

  .cm-home-chalets-card-title-0 {
    color: var(--color-black);
  }

  .btn-cm-light {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #fff;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 50px;
    transition: 0.3s;
  }

  .btn-cm-light:hover {
    background: #fff;
    color: #000 !important;
  }
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.cm-home-chalets-card.active,
.cm-home-chalets-card:hover {
  width: 840px !important;
}

.cm-home-chalets-accordion:hover .cm-home-chalets-card.active:not(:hover) {
  width: 260px !important;
}

.cm-home-chalets-card-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}

.cm-home-chalets-card-content {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -65px;
  left: 65px;
  width: 100%;
  padding-left: 0;
  z-index: 10;
}

.cm-home-chalets-card-picto {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.cm-home-chalets-card-picto img {
  width: 130px;
  height: 134px;
  object-fit: contain;
}

.cm-home-chalets-card-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s ease;
  padding-left: 20px;
}

.cm-home-chalets-card.active .cm-home-chalets-card-text,
.cm-home-chalets-card:hover .cm-home-chalets-card-text {
  opacity: 1;
  max-width: 600px;
  transform: translateX(0);
}

.cm-home-chalets-accordion:hover
  .cm-home-chalets-card.active:not(:hover)
  .cm-home-chalets-card-text {
  opacity: 0 !important;
  max-width: 0 !important;
}

.cm-home-chalets-card-title {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-25);
  letter-spacing: 2.5px;
  line-height: 1.24;
  text-transform: uppercase;
  color: var(--color-white);
}

.cm-home-chalets-card-location {
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  font-size: var(--font-size-15);
  letter-spacing: 1.5px;
  line-height: 1.26;
  color: var(--color-white);
  margin-bottom: 15px;
}

.cm-home-chalets-card-title-0 {
  color: var(--color-white);
}

.cm-home-chalets-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-kabitu-hitam);
  font-size: var(--font-size-50);
  color: var(--color-white);
  text-decoration: none;
  border: none;
  background-image: url("assets/images/cm-underline-btn-beige.svg");
  width: 255px;
  height: 58px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: 0.3s;
}

.cm-home-chalets-btn:hover {
  background-image: url("assets/images/cm-underline-title-green.svg");
  color: var(--color-white);
}

.cm-home-valloire {
  padding-top: 133px;
  position: relative;
}

.cm-home-valloire-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.cm-home-valloire-content.cm-home-valloire-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cm-home-valloire-switch {
  position: relative;
  display: inline-block;
  width: 111px;
  height: 43px;
  margin: 0 10px;
  vertical-align: middle;
}

.cm-home-valloire-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cm-home-valloire-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--color-white);
  transition: 0.4s;
  border-radius: 60px;
}

.cm-home-valloire-slider:before {
  position: absolute;
  content: "";
  height: 27px;
  width: 44px;
  left: 7px;
  bottom: 5px;
  background-color: var(--color-black);
  transition: 0.4s;
  border-radius: 25px;
}

input:checked + .cm-home-valloire-slider:before {
  transform: translateX(48px);
}

.cm-home-valloire-mask {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  -webkit-mask-image: url("assets/images/cm-mask-image.svg");
  mask-image: url("assets/images/cm-mask-image.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.cm-home-valloire-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cm-home-valloire-image-wrapper {
  position: relative;
}

.cm-home-valloire-text-overlay {
  font-size: var(--font-size-15);
  position: absolute;
  bottom: 90px;
  left: 252px;
  transform: rotate(-10deg);
  z-index: 10;
}

.cm-home-valloire-text-overlay-2 {
  font-size: var(--font-size-15);
  position: absolute;
  bottom: 90px;
  left: 404px;
  transform: rotate(-10deg);
  z-index: 10;
}

.cm-home-valloire-label {
  font-size: var(--font-size-30);
  color: var(--color-white);
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.cm-home-valloire-label.active {
  color: var(--color-black);
}

.cm-home-valloire-text strong {
  font-weight: var(--font-weight-heavy);
}

.cm-home-valloire-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-kabitu-hitam);
  font-size: var(--font-size-50);
  color: var(--color-primary);
  text-decoration: none;
  border: none;
  background-image: url("assets/images/cm-underline-title-white.png");
  width: 255px;
  height: 58px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: 0.3s;
}

.cm-home-valloire-btn:hover {
  background-image: url("assets/images/cm-underline-title-green.svg");
  color: var(--color-white);
}

.cm-home-valloire-deco img {
  width: 494px;
  height: 183px;
  position: absolute;
  bottom: 48px;
  right: 35px;
}

.cm-home-dispo {
  padding-top: 122px;
}

.cm-home-dispo-title {
  font-size: var(--font-size-40);
  letter-spacing: 4px;
  line-height: 1.2;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cm-home-dispo-title::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: -15%;
  width: 686px;
  height: 101px;
  background-image: url("assets/images/cm-underline-title-white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1;
  pointer-events: none;
}

.cm-home-dispo-logo img {
  width: 134px;
  height: 130px;
}

/* ==========================================================================
   MODULE CALENDRIER (WP Simple Booking Calendar)
   Customisation pour l'affichage "Sombre" & "Barré"
   ========================================================================== */

/* 1. Reset des styles par défaut du plugin (Fonds et Bordures) */
.wpsbc-container .wpsbc-calendars .wpsbc-calendar,
.wpsbc-container
  .wpsbc-calendars
  .wpsbc-calendar
  table
  tr
  td
  .wpsbc-date.wpsbc-gap,
.wpsbc-container .wpsbc-calendars .wpsbc-calendar .wpsbc-calendar-header {
  background: transparent !important;
}

/* 2. Style des flèches de navigation */
.wpsbc-next,
.wpsbc-prev {
  background-color: transparent !important;
  color: var(--color-black) !important;
}

/* 3. En-têtes des jours (L M M J V S D) */
.wpsbc-calendar-wrapper th {
  color: var(--color-white) !important;
}

/* 4. Corps du calendrier (Fond noir) */
.wpsbc-calendar {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

/* 5. Effet "Barré horizontal" pour les dates réservées (Statut n°2) */
.wpsbc-date.wpsbc-legend-item-2 .wpsbc-date-number {
  display: inline-block;
  background-image: linear-gradient(to bottom, #ffffff 100%, #ffffff 100%);
  background-size: 50% 2px;
  background-repeat: no-repeat;
  background-position: center;
}

.cm-home-dispo-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-kabitu-hitam);
  font-size: var(--font-size-50);
  color: var(--color-black);
  text-decoration: none;
  border: none;
  background-image: url("assets/images/cm-underline-title-dispo.png");
  width: 305px;
  height: 69px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: 0.3s;
  letter-spacing: -0.4px;
}

.cm-home-dispo-btn:hover {
  background-image: url("assets/images/cm-underline-title-green.svg");
  color: var(--color-white);
}
/* HOME */

/* PAGE - FAQ */
.cm-faq {
  padding-top: 190px;
  padding-bottom: 100px;
}

.cm-faq-title-double-beige {
  font-size: var(--font-size-40);
  letter-spacing: 4px;
  line-height: 1.2;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  position: relative;
  display: block;
}

.cm-faq-title-double-beige strong {
  font-weight: normal;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cm-faq-title-double-beige strong::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -7%;
  width: 470px;
  height: 77px;
  background-image: url("assets/images/cm-underline-title-beige.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1;
  pointer-events: none;
}

.cm-faq-section-title {
  border-bottom: 4px dotted var(--color-primary);
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cm-faq-question-reponse-wrapper {
  margin-bottom: 60px;
}

.cm-faq-question-reponse strong {
  font-weight: normal;
  color: var(--color-primary);
}
/* PAGE - FAQ */

/* PAGE - CONTACT */
.cm-contact {
  padding-top: 70px;
}
/* PAGE - CONTACT */

/* PAGE - RESERVATION */
.cm-reservation {
  padding-top: 216px;
}
/* PAGE - RESERVATION */

/* PAGE - LOGEMENT */

.cm-housing-logo img {
  width: 260px;
  height: 253px;
  position: absolute;
  bottom: 46px;
  left: 100px;
  z-index: 11;
}

.cm-housing-content {
  padding-top: 27px;
  padding-bottom: 200px;
}

.cm-housing-content-content {
  padding-top: 15px;
}

.cm-housing-content-content strong {
  font-weight: normal;
  color: var(--color-primary);
}

.cm-housing-content-mask {
  display: block;
  width: 100%;
  height: 584px;
  position: relative;
  -webkit-mask-image: url("assets/images/cm-mask-housing.svg");
  mask-image: url("assets/images/cm-mask-housing.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  line-height: 0;
  overflow: hidden;
}

.cm-housing-content-mask img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cm-housing-details-levels-wrapper {
  width: 100%;
  padding: 60px 0;
  overflow-x: hidden;
}

.cm-housing-details-level-section {
  margin-bottom: 100px;
}

.cm-housing-details-main-row {
  display: flex;
  align-items: center;
}

.cm-housing-details-text-col {
  flex: 0 0 35%;
  padding-right: 60px;
}

.cm-housing-details-slider-col {
  flex: 1;
  min-width: 0;
  position: relative;
}

.cm-housing-details-slick-slider {
  width: 100%;
  cursor: grab;
}

.cm-housing-details-slide {
  margin-right: 30px;
}

.cm-housing-details-slide img {
  height: 343px;
  width: auto;
  display: block;
  object-fit: cover;
}

.cm-housing-details-next-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cm-housing-details-next-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.cm-housing-details-next-arrow img {
  width: 53px;
  height: auto;
  display: block;
}

.cm-housing-details-equipments-container {
  margin-top: 60px;
}

.cm-housing-details-equipments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cm-housing-details-equip-box {
  width: 260px;
  height: 220px;
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  padding: 20px 0;
  text-align: center;
}

.cm-housing-details-equip-icon {
  height: 59px;
  margin-bottom: 20px;
}

.cm-housing-details-equip-title {
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
  font-size: var(--font-size-16);
  display: block;
}

.cm-housing-details-equip-desc {
  font-size: var(--font-size-16);
}

.cm-housing-details-subtitle-lvl {
  font-weight: var(--font-weight-heavy);
  font-size: var(--font-size-35);
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  position: relative;
}

.cm-housing-details-subtitle-lvl::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 258px;
  border-bottom: 4px dotted var(--color-primary);
}

.cm-housing-details-other-services {
  margin-top: 50px;
  margin-bottom: 100px;
}

.cm-housing-details-other-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.cm-housing-details-other-text {
  flex: 0 0 35%;
  padding-right: 40px;
}

.cm-housing-details-other-intro {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.5;
}

.cm-housing-details-other-equipments {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cm-housing-details-other-equipments .cm-housing-details-equip-box {
  flex: 0 0 calc(33.33% - 20px);
  min-width: 180px;
}

.cm-housing-dispo-logo img {
  width: 405px;
  height: 394px;
}

/* PAGE - LOGEMENT */
