@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Lato-Italic";
  src: url("/fonts/Lato-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Bold";
  src: url("/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Regular";
  src: url("/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marcellus-Regular";
  src: url("/fonts/Marcellus-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PinyonScript-Regular";
  src: url("/fonts/PinyonScript-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.burger-icon-close {
  display: none;
}

h2,
.page-title {
  font-family: "Marcellus-Regular";
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  h2,
  .page-title {
    font-size: 2.5rem;
  }
}

h3:not(.txt-regular),
.page-subtitle {
  font-family: "Marcellus-Regular";
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  h3:not(.txt-regular),
  .page-subtitle {
    font-size: 1.5rem;
  }
}

.subtitle {
  font-size: 1rem;
  color: #2C2C2C;
  font-family: "Lato-Regular";
  text-align: center;
}
@media (min-width: 992px) {
  .subtitle {
    font-size: 1.25rem;
  }
}

hr {
  height: 1px;
  width: 80%;
  margin: 0 auto;
  border-color: #FDFAF5;
}

.box-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.purple-section {
  background-color: #F0EDF6;
}

.white-section {
  background-color: #FDFAF5;
}

.bg-white {
  background-color: #FFFFFF;
}

.section-container {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 576px) {
  .section-container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .section-container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .section-container {
    max-width: 992px;
    padding: 3.5rem 0;
  }
}
@media (min-width: 1200px) {
  .section-container {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .section-container {
    max-width: 1600px;
  }
}

.layout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .layout {
    flex-direction: row;
  }
}

.top-section {
  min-height: 100dvh;
  padding-top: calc(65px + 3rem + env(safe-area-inset-top));
  box-sizing: border-box;
}

.w-100 {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
}

@media (min-width: 992px) {
  .flex-row-desktop {
    flex-direction: row;
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.item {
  flex: 1 1 auto;
}

.wrap {
  flex-wrap: wrap;
}

.justify-btwn {
  justify-content: space-between;
}

@media (min-width: 992px) {
  .justify-btwn-desktop {
    justify-content: space-between;
  }
}

.justify-center {
  justify-content: center;
}

@media (min-width: 992px) {
  .justify-center-desktop {
    justify-content: center;
  }
}

.justify-around {
  justify-content: space-around;
}

@media (min-width: 992px) {
  .justify-around-desktop {
    justify-content: space-around;
  }
}

.align-center {
  align-items: center;
}

@media (min-width: 992px) {
  .align-center-desktop {
    align-items: center;
  }
}

.center {
  margin: 0 auto;
}

.gap-4 {
  gap: 0.25rem;
}

.gap-8 {
  gap: 0.5rem;
}

.gap-12 {
  gap: 0.88rem;
}

.gap-14 {
  gap: 0.88rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-20 {
  gap: 1.25rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-32 {
  gap: 2rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-48 {
  gap: 3rem;
}

@media (min-width: 992px) {
  .gap-0-desktop {
    gap: 0;
  }
}

@media (min-width: 992px) {
  .gap-24-desktop {
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .gap-32-desktop {
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .gap-48-desktop {
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .gap-64-desktop {
    gap: 4rem;
  }
}

.txt-center {
  text-align: center;
}

.txt-justify {
  text-align: justify;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-uppercase {
  text-transform: uppercase;
}

.lh-1-6 {
  line-height: 1.6;
}

.txt-content {
  white-space: pre-line;
}

.main-font-bold {
  font-family: "Lato-Bold";
}

.style-font {
  font-family: "Marcellus-Regular";
}

.main-txt-color {
  color: #2C2C2C;
}

.txt-offwhite {
  color: #FDFAF5;
}

.txt-purple {
  color: #7B6FA0;
}

.txt-dark-purple {
  color: #2C2840;
}

.main-font {
  font-family: "Lato-Regular";
}

.regular-txt {
  font-size: 1rem;
}

.small-txt {
  font-size: 0.88rem;
}

.xs-txt {
  font-size: 0.75rem;
}

.large-txt {
  font-size: 1.25rem;
}

.xl-txt {
  font-size: 1.5rem;
}

.xxl-txt {
  font-size: 2rem;
}

.xxxl-txt {
  font-size: 2.5rem;
}

.main-title {
  font-family: "PinyonScript-Regular";
}

.br-12 {
  border-radius: 12px;
}

.br-8 {
  border-radius: 8px;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.padding-32 {
  padding: 2rem;
}

.pb-32 {
  padding-bottom: 2rem;
}
.pt-32 {
  padding-top: 2rem;
}

.hero-title {
  font-size: 3rem;
}
@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 5.25rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 7rem;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    font-size: 8rem;
  }
}

#hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    padding-top: calc(65px + 2rem + env(safe-area-inset-top)) ;
    box-sizing: border-box;
    background-color: #F0EDF6;
}

#hero .hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    z-index: 0;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

#hero .hero-content {
    position: relative;
    z-index: 2;
}

#hero .hero-content .hero-text-container p {
    font-family: "Marcellus-Regular";
    font-size: 1rem;
    color: #D4CEC6;
    max-width: 340px;
}

@media (min-width: 576px) {
    #hero .hero-content .hero-text-container p {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    #hero .hero-content .hero-text-container p {
        max-width: 768px;
        font-size: 1.25rem;
    }
}

#highlights .highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  #highlights .highlights-grid {
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  #highlights .highlights-grid {
    flex-direction: row;
    gap: 6rem;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .contact-container .map {
    width: 60%;
  }
  .contact-container .contact {
    width: 40%;
  }
}

footer {
  background-color: #2C2840;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  padding-top: 3.75rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
footer h2 {
  font-family: "PinyonScript-Regular";
  font-size: 2.5rem;
  text-align: left;
}
@media (min-width: 992px) {
  footer h2 {
    font-size: 3rem;
  }
}
footer h3 {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  footer h3 {
    font-size: 1.5rem;
  }
}
footer .subtitle {
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 992px) {
  footer .subtitle {
    font-size: 1.25rem;
  }
}
footer a {
  font-size: 0.88rem;
  z-index: 999;
}
@media (min-width: 992px) {
  footer a {
    font-size: 1rem;
  }
}
footer a:hover {
  text-decoration: underline;
}
footer .icon-card {
  justify-content: flex-start;
}

#main-gites-layout a:nth-child(n+2) > article:first-of-type {
  margin-top: 2rem;
}

#gite-hero-container figure {
  height: 100%;
  max-width: 340px;
  width: 100%;
}
@media (min-width: 576px) {
  #gite-hero-container figure {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  #gite-hero-container figure {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  #gite-hero-container figure {
    max-width: 800px;
  }
}
#gite-hero-container figure img {
  height: 100%;
  width: 100%;
}
#gite-hero-container #gite-hero-txt .main-title {
  font-size: 3rem;
}
@media (min-width: 768px) {
  #gite-hero-container #gite-hero-txt .main-title {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  #gite-hero-container #gite-hero-txt .main-title {
    font-size: 4.5rem;
  }
}
@media (min-width: 1200px) {
  #gite-hero-container #gite-hero-txt .main-title {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  #gite-hero-container #gite-hero-txt {
    width: 60%;
  }
}

#gite-info-card-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 992px) {
  #gite-info-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  #equipments {
    min-width: 600px;
  }
}
@media (min-width: 1200px) {
  #equipments {
    min-width: 800px;
  }
}

#equipments-container {
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;
}
#equipments-container .layout {
  padding: 1.25rem;
}
#equipments-container .layout:nth-child(2) {
  background-color: #DDD9EA;
}
@media (min-width: 992px) {
  #equipments-container {
    padding: 3rem 1.5rem;
  }
}
#equipments-container .equipment-type {
  width: 100%;
  max-width: 100px;
}

.item-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.88rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  flex-grow: 1;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .item-container {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    row-gap: 1rem;
  }
}
.item-container li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
}
@media (min-width: 768px) {
  .item-container li {
    font-size: 1rem;
  }
}
.item-container li::before {
  content: "";
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  left: 0;
  top: 0.6rem;
  transform: translateY(-50%);
  background-color: #7B6FA0;
}

#tarifs-container {
  padding: 2.5rem;
  background-color: #FFFFFF;
}
@media (min-width: 1200px) {
  #tarifs-container {
    padding: 3rem;
  }
}
#tarifs-container ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
}
@media (min-width: 768px) {
  #tarifs-container ul li {
    font-size: 1rem;
  }
}
#tarifs-container ul li::before {
  content: "";
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  left: 0;
  top: 0.6rem;
  transform: translateY(-50%);
  background-color: #2C2C2C;
}

#reservation-form {
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#reservation-form input,
#reservation-form select {
  padding: 0.5rem;
  background-color: #FDFAF5;
  border-bottom: 1px solid #2C2840;
}
#reservation-form .grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
#reservation-form .grid input {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 992px) {
  #reservation-form .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .flex-order-2-desktop {
    order: 2;
  }
}

.service-container {
  padding: 3rem;
}
@media (min-width: 992px) {
  .service-container {
    padding: 4.5rem;
  }
}
.service-container figure {
  width: 100%;
  max-width: 340px;
}
@media (min-width: 576px) {
  .service-container figure {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .service-container figure {
    max-width: 600px;
  }
}
.service-container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .service-container ul {
    width: 400px;
  }
}
.service-container ul li .icon {
  width: 0.88rem;
  height: 0.88rem;
}

.scroll-wrapper {
  position: relative;
  overflow-x: auto;
  padding: 1rem;
}
.scroll-wrapper #category-choice {
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 992px) {
  .scroll-wrapper #category-choice {
    width: auto;
  }
}

.articles-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .articles-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .articles-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1600px) {
  .articles-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

#contact-form input {
  height: 40px;
}
#contact-form input,
#contact-form textarea {
  padding: 0.5rem;
  background-color: #FDFAF5;
  border: 1px solid rgba(44, 44, 44, 0.2392156863);
}
#contact-form textarea {
  resize: none;
  height: 120px;
}

#contact-hours li {
  position: relative;
  padding-left: 2.5rem;
}
#contact-hours li::after {
  content: "";
  position: absolute;
  background-color: #2C2C2C;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  left: 1rem;
  top: 0.6rem;
  transform: translateY(-50%);
}

#contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  #contact-container {
    flex-direction: row;
  }
  #contact-container #complementary-information {
    order: 1;
  }
  #contact-container #contact-section {
    order: 2;
    width: 100%;
  }
}

#one-article p {
  line-height: 1.5;
}
#one-article a:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  #one-article header div {
    width: 50%;
  }
}
@media (min-width: 576px) {
  #one-article header img {
    max-width: 576px;
    max-height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#one-article img {
  width: 100%;
  max-width: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  #one-article .article-section img,
  #one-article .article-section video {
    max-height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 400px;
  }
}

#about #owners img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  #about #owners img {
    width: 280px;
    height: 280px;
  }
}
#about #owners p {
  line-height: 1.5;
}
#about #location img,
#about #region img {
  width: 100%;
  height: 100%;
  max-width: 340px;
}
@media (min-width: 576px) {
  #about #location img,
  #about #region img {
    max-width: 576px;
  }
}

/* 
    --------------------
            ADMIN
    --------------------
*/
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100dvh;
}

.sidebar {
  padding: 2rem;
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow-y: auto;
  background-color: #F0EDF6;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: gray #F0EDF6;
}
.sidebar a:hover {
  text-decoration: underline;
}

.admin-content {
  padding: 2rem;
}

.admin-content {
  overflow-x: scroll;
}
.admin-content .table {
  margin-top: 2rem;
  width: 100%;
  font-size: 0.88rem;
  color: #2C2C2C;
  border-collapse: collapse;
}
.admin-content .table tr {
  border-radius: 12px 12px 0 0;
}
.admin-content .table th {
  font-family: "Lato-Bold";
  background-color: #F0EDF6;
}
.admin-content .table td:not(.other-month) {
  background-color: #FFFFFF;
}
.admin-content .table td {
  font-family: "Lato-Regular";
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-content .table td.awaiting {
  background-color: rgba(230, 125, 34, 0.5333333333);
}
.admin-content .table td.awaiting.other-month {
  background-color: rgba(230, 125, 34, 0.3254901961);
}
.admin-content .table td.declined {
  background-color: rgba(251, 22, 22, 0.3960784314);
}
.admin-content .table td.declined.other-month {
  background-color: rgba(251, 22, 22, 0.2039215686);
}
.admin-content .table td.accepted {
  background-color: rgba(34, 230, 77, 0.337254902);
}
.admin-content .table td.accepted.other-month {
  background-color: rgba(34, 230, 77, 0.1960784314);
}
.admin-content .table th,
.admin-content .table td {
  padding: 0.5rem 1rem;
  border: 1px solid #2C2C2C;
}

.logout {
  color: red;
}

#login-page {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#login-form {
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 576px) {
  #login-form {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  #login-form {
    max-width: 768px;
  }
}
#login-form input {
  border: 1px solid #2C2840;
  padding: 0.5rem;
  border-radius: 8px;
  width: 100%;
  max-width: 250px;
}
@media (min-width: 992px) {
  #login-form input {
    width: 300px;
  }
}

.admin-content {
  background-color: #FDFAF5;
}
.admin-content form:not(.delete-form) {
  width: 100%;
  max-width: 340px;
  background-color: #FFFFFF;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .admin-content form:not(.delete-form) {
    max-width: 768px;
  }
}
.admin-content form:not(.delete-form):not(#search-reservation):not(#reservation-filter) {
  margin-top: 2rem;
}
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) label {
  font-size: 1rem;
  font-family: "Lato-Bold";
  color: #2C2C2C;
}
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) textarea {
  resize: none;
  height: 280px;
}
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) input,
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) textarea,
.admin-content form:not(.delete-form) div:not(.flex-row, .equipment-list) div:not(.flex-row) select {
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #2C2C2C;
  font-size: 0.88rem;
  font-family: "Lato-Regular";
  color: #2C2C2C;
}

#password-wrapper {
  position: relative;
}
#password-wrapper .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  cursor: pointer;
  color: #7B6FA0;
  opacity: 1;
  transition: all ease 0.25s;
}
#password-wrapper .icon:hover {
  opacity: 0.8;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.file-admin {
  margin: 2rem auto;
  width: 100%;
  max-width: 768px;
  max-height: 432px;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-image-input {
  margin-bottom: 1rem;
}

#search-reservation {
  background-color: transparent;
}
#search-reservation div {
  width: 100%;
}

#reservation-filter {
  background-color: transparent;
}
#reservation-filter input {
  background-color: #FFFFFF;
}
#reservation-filter input[type=text] {
  border: 1px solid #2C2C2C;
  width: 100%;
  background-color: #FFFFFF;
  padding: 0.5rem;
}

#header {
  width: 100%;
  max-width: 340px;
  background-color: rgba(240, 237, 246, 0.95);
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  line-height: 1.7;
  z-index: 999;
  height: 65px;
}
#header .change-locale-form select {
  padding: 1rem;
  cursor: pointer;
}
#header .change-locale-form select option {
  background-color: rgba(240, 237, 246, 0.95);
  padding: 0.5rem;
}
@media (min-width: 576px) {
  #header {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  #header {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  #header {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  #header {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  #header {
    max-width: 1600px;
  }
}
#header .home-link {
  font-family: "PinyonScript-Regular";
  font-size: 1.25rem;
}
@media (min-width: 1200px) {
  #header .home-link {
    font-size: 1.5rem;
  }
}
#header .burger-icon {
  height: 24px;
  width: 24px;
}
@media (min-width: 1200px) {
  #header .burger-icon {
    display: none;
  }
}
#header .menu-container {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background-color: rgba(240, 237, 246, 0.95);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: opacity ease 0.25s;
  opacity: 0;
  pointer-events: none;
}
#header .menu-container.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1200px) {
  #header .menu-container {
    flex-direction: row;
    align-items: center;
    opacity: 1;
    background-color: transparent;
    padding: 0;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
}
#header .menu-container ul:not(.flex-col) {
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
}
@media (min-width: 1200px) {
  #header .menu-container ul:not(.flex-col) {
    flex-direction: row;
    gap: 1.5rem;
  }
}
#header .menu-container ul:not(.flex-col) li {
  position: relative;
}
#header .menu-container ul:not(.flex-col) li a {
  font-size: 1rem;
  font-family: "Marcellus-Regular";
  display: block;
  height: 100%;
}
#header .menu-container ul:not(.flex-col) li a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  display: block;
  background-color: #2C2840;
  height: 2px;
  transition: width ease 0.3s;
}
#header .menu-container ul:not(.flex-col) li a:hover::before {
  width: 100%;
}

#locale-selector {
  position: relative;
  padding: 0 1rem 0 1rem;
  cursor: pointer;
}
#locale-selector #locale-container {
  position: absolute;
  top: 2rem;
  transform: translateX(-0.5rem);
  background-color: rgba(240, 237, 246, 0.95);
  border-radius: 0 0 8px 8px;
  width: 80px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease 0.25s;
}
#locale-selector #locale-container.is-open {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 992px) {
  #locale-selector #locale-container {
    top: 2.87rem;
  }
}

.purple-btn {
  background-color: #7B6FA0;
  transition: background-color ease 0.25s;
}
.purple-btn:hover {
  background-color: #9B8FC0;
}

.dark-purple-btn {
  background-color: #2C2840;
  transition: all ease 0.25s;
}
.dark-purple-btn:hover {
  background-color: transparent;
  color: #2C2840;
  outline: 1px solid #2C2840;
}

.outline-purple-btn {
  background-color: transparent;
  outline: 1px solid #7B6FA0;
  outline-offset: -1px;
  color: #7B6FA0;
  transition: all ease 0.25s;
}
.outline-purple-btn:hover {
  background-color: #7B6FA0;
  color: #FFFFFF;
}

.outline-dark-purple-btn {
  background-color: transparent;
  outline: 1px solid #2C2840;
  outline-offset: -1px;
  color: #2C2840;
  transition: all ease 0.25s;
}
.outline-dark-purple-btn.is-active {
  background-color: #2C2840;
  color: #FFFFFF;
}
.outline-dark-purple-btn:hover {
  background-color: #2C2840;
  color: #FFFFFF;
}

.btn {
  font-family: "Lato-Bold";
  text-align: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.88rem;
}
@media (min-width: 992px) {
  .btn.main-btn {
    font-size: 1rem;
  }
}

.disabled-btn {
  pointer-events: none;
  opacity: 0.6;
}

.purple-btn,
.dark-purple-btn {
  color: #FFFFFF;
}

.small-btn {
  padding: 0.375rem 0.75rem;
}

.category-btn {
  padding: 0.5rem 0.88rem;
  outline: 1px solid #7B6FA0;
  outline-offset: -1px;
  cursor: pointer;
  background-color: transparent;
}
.category-btn.is-active {
  background-color: #7B6FA0;
  color: #FFFFFF;
}

.delete {
  background-color: rgba(255, 0, 0, 0.627);
  color: #FFFFFF;
}

.main-btn {
  padding: 0.5rem 1rem;
}
@media (min-width: 992px) {
  .main-btn {
    padding: 0.75rem 1.5rem;
  }
}

.icon-bg-white {
  background-color: #FFFFFF;
}

.icon-bg-purple {
  background-color: #F0EDF6;
}

.icon-bg-transparent {
  background-color: transparent;
}

.large-icon-card .icon-container {
  width: 56px;
  height: 56px;
}
@media (min-width: 1200px) {
  .large-icon-card .icon-container {
    width: 64px;
    height: 64px;
  }
}
.large-icon-card .icon-container .icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 1200px) {
  .large-icon-card .icon-container .icon {
    width: 40px;
    height: 40px;
  }
}

.medium-icon-card .icon-container .icon {
  width: 32px;
  height: 32px;
}

.small-icon-card .icon-container {
  width: 32px;
  height: 32px;
}
.small-icon-card .icon-container .icon {
  width: 20px;
  height: 20px;
}

.gite-card-container,
.wide-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .gite-card-container {
    flex-direction: row;
    gap: 0;
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .gite-card-container .gite-home-card {
    max-width: 380px;
  }
}

.gite-home-card,
.wide-card {
  max-width: 300px;
  width: 100%;
}
.gite-home-card figure.main-card-img,
.wide-card figure.main-card-img {
  height: 320px;
}
.gite-home-card img,
.wide-card img {
  border-radius: 8px 8px 0 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gite-home-card .info-container,
.wide-card .info-container {
  padding: 2rem;
}
@media (min-width: 1200px) {
  .gite-home-card .info-container,
  .wide-card .info-container {
    max-height: 320px;
  }
}

.info-container {
  border-radius: 0 0 8px 8px;
  background-color: #FFFFFF;
}
.info-container h4 {
  font-family: "Marcellus-Regular";
  font-size: 1.25rem;
  color: #2C2840;
}

@media (min-width: 992px) {
  .wide-card-container {
    align-items: flex-start;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .wide-card {
    width: 100%;
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .wide-card {
    width: 100%;
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .wide-card {
    width: 100%;
    max-width: 1600px;
  }
}
@media (min-width: 992px) {
  .wide-card article {
    display: flex;
  }
}
@media (min-width: 992px) {
  .wide-card article img {
    max-width: 400px;
    border-radius: 8px 0 0 8px;
  }
}
.wide-card .info-container {
  width: 100%;
}
@media (min-width: 992px) {
  .wide-card .info-container {
    border-radius: 0 8px 8px 0;
  }
}

.reservation-module {
  padding: 2rem 3rem;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 576px) {
  .reservation-module {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .reservation-module {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .reservation-module {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .reservation-module {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .reservation-module {
    max-width: 1600px;
  }
}
.reservation-module input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
}
.reservation-module input[type=date]:not(:valid)::-webkit-datetime-edit {
  color: #6B6B6B;
}
.reservation-module input {
  border-bottom: solid 1px #7B6FA0;
  width: 100%;
  min-width: 200px;
  max-width: 240px;
}
@media (min-width: 992px) {
  .reservation-module input {
    width: 360px;
  }
}
.reservation-module input::-moz-placeholder {
  color: #6B6B6B;
}
.reservation-module input::placeholder {
  color: #6B6B6B;
}

.article-card {
  width: 100%;
  max-width: 320px;
}
.article-card h4 {
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
}
.article-card figure {
  width: 320px;
  height: 220px;
}
.article-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.article-card .info-container {
  padding: 1.5rem;
}
.article-card .info-container p {
  font-family: "Lato-Regular";
}
.article-card .info-container .content {
  height: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  -webkit-line-clamp: 5;
}
.article-card .info-container .read-link .icon {
  width: 20px;
  height: 20px;
}

.category-card {
  padding: 0.125rem 0.5rem;
  background-color: #DDD9EA;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

.main-gite-card {
  color: #2C2C2C;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.main-gite-card .info-container .description,
.main-gite-card .info-container #key-info,
.main-gite-card .info-container .price {
  font-family: "Lato-Regular";
  line-height: 1.6;
}
.main-gite-card .info-container #key-infos .price {
  font-weight: 600;
}

.gite-info-card {
  padding: 1rem 0;
  width: 100%;
  max-width: 200px;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .gite-info-card {
    width: 200px;
  }
}
.gite-info-card .icon {
  width: 48px;
  height: 48px;
}

.value-article {
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  width: 200px;
}
.value-article svg {
  width: 36px;
  height: 36px;
}

.alert {
  color: red;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: rgba(255, 0, 0, 0.298);
}

#gite-page {
  position: relative;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .modal {
    flex-direction: row;
  }
}
.modal .close-btn {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
@media (min-width: 992px) {
  .modal .close-btn {
    top: 2rem;
    left: 2rem;
  }
}
.modal .close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #FFFFFF;
  transition: all ease 0.25s;
}
.modal .close-btn svg:hover {
  color: rgba(44, 40, 64, 0.5254901961);
}
.modal #thumbnails-container {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 8px;
  height: auto;
  max-height: 40vh;
}
@media (min-width: 992px) {
  .modal #thumbnails-container {
    max-height: 558px;
    height: 558px;
  }
}
.modal #thumbnails-container #thumbnails {
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 85%;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1rem;
}
@media (min-width: 576px) {
  .modal #thumbnails-container #thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .modal #thumbnails-container #thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal #thumbnails-container #thumbnails .thumbnail {
  width: 120px;
  height: 67px;
}
@media (min-width: 768px) {
  .modal #thumbnails-container #thumbnails .thumbnail {
    width: 160px;
    height: 90px;
  }
}
@media (min-width: 992px) {
  .modal #thumbnails-container #thumbnails .thumbnail {
    width: 200px;
    height: 112px;
  }
}
.modal #thumbnails-container #thumbnails .thumbnail img,
.modal #thumbnails-container #thumbnails .thumbnail video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.files-container {
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  position: relative;
  height: 50%;
}
@media (min-width: 576px) {
  .files-container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .files-container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .files-container {
    max-width: 932px;
    height: 558px;
  }
}
.files-container #arrow-right {
  right: 1rem;
}
.files-container #arrow-left {
  left: 1rem;
}
.files-container #arrow-right,
.files-container #arrow-left {
  background-color: #F0EDF6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999999;
  opacity: 0.3;
  transition: opacity ease 0.25s;
}
.files-container #arrow-right:hover,
.files-container #arrow-left:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .files-container #arrow-right,
  .files-container #arrow-left {
    opacity: 0;
  }
  .files-container #arrow-right:hover,
  .files-container #arrow-left:hover {
    opacity: 1;
  }
}
.files-container #arrow-right svg,
.files-container #arrow-left svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2C2840;
  transition: all ease 0.25s;
}
.files-container #arrow-right svg:hover,
.files-container #arrow-left svg:hover {
  color: rgba(44, 40, 64, 0.5254901961);
}
.files-container .slider {
  display: flex;
  width: 100%;
  transition: transform ease 0.25s;
  height: 100%;
}
.files-container .slider:hover ~ #arrow-left, .files-container .slider:hover ~ #arrow-right {
  opacity: 0.4;
}
.files-container .slider .slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.files-container .slider .slide img,
.files-container .slider .slide video {
  max-width: 340px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .files-container .slider .slide img,
  .files-container .slider .slide video {
    max-width: 516px;
    max-height: 324px;
  }
}
@media (min-width: 768px) {
  .files-container .slider .slide img,
  .files-container .slider .slide video {
    max-width: 708px;
    max-height: 432px;
  }
}
@media (min-width: 992px) {
  .files-container .slider .slide img,
  .files-container .slider .slide video {
    max-width: 932px;
    max-height: 558px;
  }
}

.open {
  display: flex;
}

.error-message {
  padding: 0.5rem;
  background-color: rgba(255, 0, 0, 0.49);
  color: rgb(90, 3, 3);
  border: 1px solid darkred;
}

.success-message {
  padding: 0.5rem;
  background-color: rgba(27, 176, 27, 0.555);
  color: darkgreen;
  border: 1px solid darkgreen;
}

#weather-module-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 992px) {
  #weather-module-container {
    bottom: 3rem;
    right: 3rem;
  }
}
#weather-module-container button {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #FFFFFF;
  border-radius: 50%;
}
#weather-module-container button .icon {
  width: 2rem;
  height: 2rem;
  color: #7B6FA0;
}

#weather-module-container.close-index {
    z-index: 0;
}

.weather-module {
  padding: 1.5rem;
  background-color: #FFFFFF;
}

.weather-module-close {
  opacity: 0;
  pointer-events: none;
}

.weather-module-container-hidden {
  z-index: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.temp-cold {
  color: #2E86DE;
}

.temp-mild {
  color: #27AE60;
}

.temp-warm {
  color: #E67E22;
}

.temp-hot {
  color: #E74C3C;
}

.new-password-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #FFFFFF;
}
.new-password-success .success-icon {
  width: 8rem;
  height: 8rem;
  color: #7B6FA0;
}

#update-password-success {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider-admin {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
}

.slider-admin:before {
  position: absolute;
  content: "";
  height: 16px;
  /* réduit */
  width: 16px;
  /* réduit */
  left: 3px;
  /* ajusté */
  bottom: 3px;
  /* ajusté */
  background-color: white;
  transition: 0.3s;
}

input:checked + .slider-admin {
  background-color: #7B6FA0;
}

input:focus + .slider-admin {
  box-shadow: 0 0 1px #7B6FA0;
}

input:checked + .slider-admin:before {
  transform: translateX(18px);
  /* ajusté pour la nouvelle largeur */
}

/* Rounded sliders */
.slider-admin.round {
  border-radius: 22px;
  /* réduit */
}

.slider-admin.round:before {
  border-radius: 50%;
}

.admin-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: #FFFFFF;
  z-index: 999999;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.editable-txt-container {
  padding: 1rem;
  border: 1px solid #2C2C2C;
}
.editable-txt-container p {
  padding: 0.5rem;
}

.planning-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.planning-table th,
.planning-table td {
  border: 1px solid #bdbdbd;
}
.planning-table thead th {
  padding: 1.5rem 0.75rem;
  text-align: center;
}
.planning-table tbody td:not(.other-month) {
  height: 4rem;
  background: #FFFFFF;
}

/* Colonne des gîtes */
.planning-table tbody td:first-child,
.planning-table thead th:first-child {
  width: 14rem;
  min-width: 14rem;
  text-align: left;
  padding: 0 1rem;
  white-space: nowrap;
}

/* Colonnes des jours */
.planning-table thead th:not(:first-child) {
  width: calc((100% - 14rem) / 7);
  padding: 1rem 0.25rem;
}

/* Cellules du planning */
.day-cell {
  position: relative;
  padding: 0;
  overflow: visible;
}

/* Réservation sur un seul jour */
.reservation-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5rem;
  opacity: 0.7;
  left: -1px;
  right: -1px;
}

.reservation-block.full {
  left: 0.4rem;
  right: 0.4rem;
  border-radius: 0.5rem;
}

.reservation-block.starts {
  left: calc(50% + 2px);
  right: -1px;
  border-radius: 0.5rem 0 0 0.5rem;
}

.reservation-block.ends {
  left: -1px;
  right: calc(50% + 2px);
  border-radius: 0 0.5rem 0.5rem 0;
}

.reservation-block.ongoing {
  left: -1px;
  right: -1px;
  border-radius: 0;
}

.month-grid {
  width: 100%;
}

/* Ligne des jours */
.weekdays-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.weekdays-header div {
  border: 1px solid #bdbdbd;
  padding: 2rem;
}

/* Une semaine */
.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

/* Numéro du jour */
.other-month .day-number {
  color: #b8b8b8;
}

.day-number {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
}

.month-cell {
  position: relative;
  min-height: 115px;
  border: 1px solid #bdbdbd;
}

.month-reservation-bar {
  position: absolute;
  height: 1.2rem;
  opacity: 0.8;
}

.start {
  left: 50%;
  right: -1px;
  border-radius: 4px 0 0 4px;
}

.end {
  left: -1px;
  right: 50%;
  border-radius: 0 4px 4px 0;
}

.middle {
  left: -1px;
  right: -1px;
}

.single {
  left: 0.5rem;
  right: 0.5rem;
  border-radius: 4px;
}

/* Jours du mois précédent/suivant */
.other-month {
  background: rgba(0, 0, 0, 0.02);
}

.reservation-info-container {
  position: fixed;
  padding: 2rem;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 280px;
  display: none;
  pointer-events: none;
}
.reservation-info-container p {
  text-wrap: wrap;
}

.is-open {
  display: block;
}

.gite-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

@keyframes loader {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.loader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.loader .circle {
  animation: loader 1s linear infinite;
  height: 3rem;
  width: 3rem;
  background-color: transparent;
  border-width: 0.25rem;
  border-style: solid;
  border-color: #7B6FA0 #7B6FA0 #7B6FA0 #F0EDF6;
  border-radius: 50%;
}

.hidden {
  display: none;
}

main#confidentiality ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

main#confidentiality ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

main#confidentiality ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.33rem;
    height: 0.33rem;
    background-color: #2C2C2C;
    border-radius: 50%;
}
