/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  
  body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

/*Codes couleur*/ 
:root{
--bg-body-1: #F8F8FF;
--bg-body-: rgb(229, 229, 226);
--border : #1ABC9C;
--cta : #FF5841;
--text-main: #333333;
--text-titles: #2C3E50;
--font-family-main: 'Lobster two', sans-serif;
--font-family-secundary: 'Mulish', sans-serif;
}

body {
    background-color: var(--bg-body-1);
    font-family: var(--font-family-secundary);
    width: 100%;
}

#banner {
    position: fixed;
    width: 100%;
    height : 60px;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    padding: 1em;
    top: 0;
    z-index: 100;
    }


#banner.scrolled {
    position: fixed;
    background-color: white;
    top:0;
    z-index: 2000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: background-color 0.5s ease ;    
}

.banner--logo {
    width: 12em;
    height: 3em;
    }

#header-right {
    display: flex;
    align-items: center;
    }
    
#menu-list {
    display: flex;
    align-items: center;
}

#menu-list li {
    list-style-type: none;
    transition: transform 0.4s ease;
    padding-right: 1em;
}

#menu-list li:hover {
  transform:translateY(-2px);
}

#menu-list li:active {
    font-weight: 700;
}

#header-right a {
    text-decoration: none;
    color: var(--text-titles);
    padding: 1em 1em 1em 1em;
    font-family: var(--font-main);
    font-size: 1.125em;
    transition:all 0.25s ease;
}

#header-right a.primary-button {
    background-size: cover;
    border-radius: 10px;
    color:#f6f6f0;
    width : 100%;
    border: 1px solid var(--text-titles);
    margin:0.5em;
    padding: 0.4em 1.5em;
    font-weight: 700;
    text-align: center;
}  

.primary-button {
    text-decoration: none;
    background-color: var(--text-titles);
    border-radius: 10px;
    color:#f6f6f0;
    width : 100%;
    transition: transform 0.4s ease;
    margin:0.5em;
    padding: 0.4em 1.5em;
    font-weight: 700;
    text-align: center;
}

#header-right a.menu-list-book {
    background-color: var(--text-titles);
    border-radius: 10px;
    color:#f6f6f0;
    width : 100%;
    margin:0.5em;
    padding: 0.4em 1.5em;
        transition:all 0.25s ease;

    text-align: center;
}  

#header-right a.menu-list-book:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(0,0,0,0.22);}

#header-right button {
    width : 50px;
    height: 50px;
    border: none;
    color:var(--text-titles);
    cursor:pointer;
}

/* ----------------------------- SECTION PREVIEW */
.preview-container {
    overflow: hidden;
    position : relative;
    width: 100%;
}



.preview-img {
    width:100%;
    height: 700px;
    object-fit: cover;
    position : relative;
}

.preview-txt {
    position: absolute;
    z-index: 1;
    bottom : 275px;
    left: 100px;
    background-color: rgba(255, 255, 255, 0.6);
    padding : 2em;
    display: flex;
    flex-direction: column;
    gap : 2em;
}

.preview-txt button {
    font-size: 1.3em;
}

.preview-txt .card-container-btn {
    align-self: flex-start;
}

span {
    font-weight: 800;
}

h1 {
    font-size: 2.5em;
    font-family: var(--font-family-main);
    font-weight: 800;
    color: var(--text-titles);
}

h2 {
    font-family: var(--font-family-main);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 2em;
    background: url("./img/landscape/webp/bg-button-vmeJcJ-Z4-unsplash.webp");
    background-size:contain;
    color:#2C3E50;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    font-weight: 800;
} 



/* ------------------------------ SECTION INTRO */
/*.intro {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    background-color: var(--bg-body-);
    padding: 1em 0em 1em 5em;
    margin: 5em auto 8em auto;
}

.intro-title {
    font-family: var(--font-family-secundary);
    color : var(--text-titles);
    font-size: 1.2em;
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
}

.intro-text {
    width : 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 1em;
    
}

.intro-intro {
    width: 100%;
}

.intro-vid {
    display: flex;
    width: 50%;
    height: 500px;
    overflow: hidden;
}

.intro-video {
    width : 90%;
    height: 90%;
    margin:auto;
}

.intro-button {
    background-color: var(--text-titles);
    border-radius: 10px;
    color:#f6f6f0;
    width : 60%;
    transition: transform 0.4s ease;
    padding : 0.5em 0em;
    font-weight: 700;
    }

.intro-button:hover {
    transform: scale(1.1);
}

.intro-buttons {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2em;
}
/* ---------------------------------- SECTION VILLA PREVIEWS */

/* SECTION INTRO (premium) */
.intro {
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* IMPORTANT */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--bg-body);
    padding: 1em 0em 1em 5em;
    margin: 5em auto 8em auto;
    gap: 5em;
}

/* Colonne texte */
.intro-title {
  width: 45%;
  height: auto;

  font-family: var(--font-family-secundary);
  color: var(--text-titles);
  font-size: 1.15em;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
}

.intro-title h2{
  font-size: 2em;
  letter-spacing: 0.02em;
  margin: 0;
}

.intro-intro span{
  display: inline-block;
  font-size: 1em;
  opacity: 0.9;
}

.intro-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1em;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
}

/* Colonne vidéo */
.intro-vid {
  width: 40%;
  height: 400px;               /* un peu plus "hero" */
  display: flex;
  overflow: hidden;
  border-radius: 18px;         /* premium */
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* premium */
  margin: 0;
}

/* Le CTA doit passer sous les 2 colonnes */
.cta-block{
      background: #f6f6f2;
    padding: 2.5em 3em;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width:100%;
    max-width: 100%;
    flex-basis:100%;
    
    display:flex;
    flex-direction:column;
    align-items:center;

    margin-top:4em;          /* espace avec la section au-dessus */
    gap:1.2em;               /* espace entre lignes */
    text-align:center;

    margin-left:auto;
    margin-right:auto;
}

.cta-row{
  display: flex;
  gap: 1.4em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* base boutons */
.btn{
    padding:1em 2em;         /* boutons plus respirants */
    border-radius:14px;
    font-weight:600;
    font-size:1rem;
    letter-spacing:0.02em;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:210px;

    transition:all 0.25s ease;
}

/* CTA principal */
.btn-primary{
    background:var(--text-titles);
    color:#f6f6f0;
    text-decoration: none;
    box-shadow:0 8px 22px rgba(0,0,0,0.15);
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(0,0,0,0.22);
}


/* CTA secondaire */
.btn-secondary{
  background-color: transparent;
  color: var(--text-titles);
  border: 1.5px solid rgba(0,0,0,0.18);
    text-decoration: none;
}


.btn-secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.35);
}

/* Réassurance */
.cta-trust{
  font-size: 1em;
  color: rgba(0,0,0,0.55);
  line-height: 1.5;
  text-align: center;
}

/* Liens OTA */
.cta-links{
  font-size: 1em;
  color: rgba(0,0,0,0.60);
  text-align: center;
}

.cta-links a{
  color: var(--text-titles);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
}

.cta-links a:hover{
    text-decoration:underline;
}

h3 {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 3em;
    background: url("./img/landscape/webp/bg-button-vmeJcJ-Z4-unsplash.webp");
    background-size:contain;
    color:#2C3E50;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    font-weight: 800;
    font-family: var(--font-family-main);
    background-color: var(--bg-body-1);
    text-align: center;

}

.card-container-btn {
    text-decoration: none;
    background-color: var(--text-titles);
        transition:all 0.25s ease;

    border-radius: 10px;
    color:#f6f6f0;
    width : 50%;
    margin:0.5em;
    padding: 0.4em 1.5em;
    font-size: 1.125em;
    text-align: center;
    align-self: center;
        box-shadow:0 8px 22px rgba(0,0,0,0.15);

}

.card-container-btn:hover {
   transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(0,0,0,0.22);}

.accomodations-preview {
    display: flex;
    width: 100%;
    height: 600px;
    padding-top: 1em;
    margin-top: 2em;
}

.swiper-container {
    width: 50%;
    height: 600px;
}

.swiper {
    width:90%;
    height: 90%;
    padding : 2em;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.card-container {
    width: 50%;
    height: 600px;
    padding: 2em;
}

.card-flex {
    display: flex;
    width: 100%;
    height: 90%;
    flex-direction: column;
    justify-content: center;
    gap : 1em;
    
}

.card-p {
    display: flex;
    flex-direction: column;
}
.card-p, .card-flex button {
    font-size: 1.125em;
    padding: 1em;
    text-align: center;
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
}

.card-title, .card-p {
    letter-spacing: 0.1em;
    color: var(--text-titles)
}

.card-flex button {
    align-self: center;
    font-weight: 700;
}

.pool-preview {
    background-color: var(--bg-body-);
    display: flex;
    width: 100%;
    height: 650px;
    padding-top: 4em;
}

.living-preview {
    background-color: var(--bg-body-1);
    display: flex;
    width: 100%;
    height: 600px;
    padding-top: 2em;
    margin-bottom: 6em;
}
/* ------------------------------------ SECTION ULUWATU BALI*/
h4 {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 3em;
    background: url("./img/landscape/webp/bg-button-vmeJcJ-Z4-unsplash.webp");
    background-size:contain;
    color:#2C3E50;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    font-weight: 800;
    font-family: var(--font-family-main);
    text-align: center;
}
.ulu-container {
    background-color: var(--bg-body-);
    padding: 5em 0 5em 0;
}

@keyframes enter-animation {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .image-animation {
      animation: enter-animation 0.8s 1;
    }
  }

.ulu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height:auto;
    gap: 5em;
    overflow: hidden;
    background-color: var(--bg-body-);
    margin: 5em auto 2em auto;
}

.ulu-left {
    display: flex;
    flex-direction: column;
    line-height: 2.5em;
    gap:2em;
    align-items: center; 
    width : 40%;
    height: auto;
}

.ulu-left img, .ulu-right img {
    width : 90%;
    height: 90%;
}

.ulu-left p {
    font-size: 1.125em;
    text-align: center;
    width: 80%;
    height: auto;
    align-self: center;
    color: var(--text-titles);
}

.ulu-right {
    display: flex;
    justify-content: center;
    width : 40%;
    height : auto;
}
/* ------------------------------------- SECTION REVIEWS */

.review-container {
    display: flex;
    flex-direction: column;
    background-color: var(--text-titles);
    width: 100%;
    height: auto;
    gap: 4em;
    padding : 2em 2em 4em 2em;
    margin-bottom: 5em;
}

h5 {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 3em;
    color:var(--bg-body-);
    width: 100%;
    font-weight: 800;
    font-family: var(--font-family-main);
    /* padding-left: 2em; */
}
.review {
    display: flex;
    width: 100%;
    height: auto;
    gap:5em;
    margin:auto;
}

.review-card {
    width: 33%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap : 2em;
    text-align: center;
    padding:2em;
    line-height: 1.em;
    color:black;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}

.review-title {
    font-size: 1.125em;
    font-weight: 700;
    color: var(--text-titles);
}

.review-txt {
    font-size: 1em;
    color: var(--text-titles)
}

.review-bottom {
    display: flex;
    gap : 1em;
}

.review-bottom img {
    width:70px;
    height: auto;
}
/* -----------------------------------SECTION INQUIRY */

.inquiry-container {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-body-);
    padding: 2em 0 10em 0;
}

h6 {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 4em;
    background: url("./img/landscape/webp/bg-button-vmeJcJ-Z4-unsplash.webp");
    background-size:contain;
    color:#2C3E50;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    font-weight: 800;
    font-family: var(--font-family-main);
    padding-left: 2em;
}

.inquiry {
    width:100%;
    height: auto;
    display: flex;
    font-size: 1.125em;
    background-color: var(--bg-body-);
    justify-content: center;
    align-items: center;
}

.inquiry-logo {
    width : 80%;
    padding-left: 2em;
}

.inquiry-img {
    width : 30%;
    object-fit: contain;
    max-width: 30%;
}

.inqiry__img--bottom {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid var(--bg-body-1);
}

.inquiry-aside {
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding : 2em;
    gap: 1em
}

.inquiry-aside-title {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--text-titles);
}
.inquiry-aside-txt {
    font-size: 1.125em;
    text-align: center;
    color:var(--text-titles);
}
.inquiry-aside a.menu-list-book {
        text-decoration: none;
        background-color: var(--text-titles);
        border-radius: 10px;
        color:#f6f6f0;
        width : 50%;
        transition: transform 0.4s ease;
        border: 1px solid var(--text-titles);
        margin:0.5em;
        padding: 0.4em 1.5em;
        font-weight: 700;
        text-align: center;
    }  
    
.inquiry-aside a.menu-list-book:hover {
        transform: scale(1.1);
    }

footer {
    width: 100%;
    height : auto;
    background-image: url("./img/landscape/resized/chuttersnap-u-vmeJcJ-Z4-unsplash.jpg");
    background-size: cover;
    color: var(--bg-body-);
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:1em;
}


.footer-address {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width:400px;
}

.footer-address img {
    width: 20em;
    height: 5em;
}

.footer-address p {
    line-height: 1.8em;
}


.footer-nav li{
    list-style-type: none;
    margin: 1em;
}

.footer-nav a {
    text-decoration: none;
    color:var(--bg-body-);
    position: relative;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: var(--bg-body-);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }
  
  .footer-nav a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }

.legal {
text-align: center;
padding-bottom: 1em;

}

/* -------------------------------------- HOMEPAGE MEDIA QUERIES */
@media screen and (max-width: 991px) {
    #header-right #menu-list {
        display: none;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align:end;
        position: absolute;
        top:60px;
        right: 10px;
        width: 40%;
        height: auto;
        padding: 1em 0;
        z-index: 4;
    }
    
    #header-right a {
        display: inline-block;
        background-image: none !important;
        background-color: white !important;
        border-radius: 10px;
        color:var(--text-titles);
        border: 1px solid var(--text-titles);
        font-weight: 700;
        text-align: center;
        width: auto;
        margin: 0.5em auto;
        padding : 0.5em 1em;
    }
        
    #header-right a.menu-list-book {
        display: inline-block;
        background-color: var(--text-titles) !important;
        background-size: cover;
        border-radius: 10px;
        color:var(--bg-body-1);
        border: 1px solid var(--bg-body-);
        font-weight: 700;
        text-align: center;
        width: auto;
        margin: 0 auto 0.5em auto;
        padding : 0.5em 1em;
    }
    
    #header-right.expanded #menu-list {
    display: flex;
    flex-direction: column;
    color: var(--bg-body-);
    z-index: 5;
    }
    
    #header-right #menu-list li {
    width: 100%;
    }
    
    #menu-button button {
    display: block;
    backdrop-filter: opacity(50%);
    padding : 0;
    margin: 0;
    }

    #banner {
    display: flex;
    justify-content: space-between;
    background: transparent;
    align-items: center;
    margin: 0;
    padding: 1em;
    width: 100%;
    height: 70px;
}

    #header-right button {
        background-color: transparent;
    }

    #fixed-btn {
        display: flex;
        position:fixed;
        width: 100%;
        gap: 1em;
        justify-content: space-around;
        padding: 1em;
        bottom: 7px;
        z-index:10;
        transition: transform 0.4s ease;
    }

    .fixed-btn-contact {
        background-color: var(--text-titles);
        border-radius: 10px;
        color:#f6f6f0;
        width : 100%;
        height: auto;
        transition: transform 0.4s ease;
        border:2px solid var(--bg-body-);
        padding : 0.7em 0.7em;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
    }

    .fixed-btn-book {
        background-color: var(--text-titles);
        background-size: cover;
        border-radius: 10px;
        color:#f6f6f0;
        width : 100%;
        transition: transform 0.4s ease;
        border: 2px solid var(--bg-body-);
        padding : 0.7em 0.7em;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
    }

    .fixed-btn-contact:active, .fixed-btn-book:active {
        font-weight: 700;
        transform: scale(1.2);
    }

    
    .preview-img {
        max-width: 100%;
        height: 450px; /* Réduire la hauteur de l'image pour les petits écrans */
    }

    .preview-txt {
        bottom: 20px; /* Ajuster la position du texte */
        left: 20px;
        right: 20px; /* Ajouter right pour que le texte s'adapte à la largeur */
        padding: 1em; /* Réduire le padding */
        z-index: 0;
    }

    .preview-txt button {
        font-size: 1.2em; /* Réduire la taille du texte du bouton */
    }

    h1 {
        font-size: 2em; /* Réduire la taille du titre */
    }

    h2, h3, h4, h5, h6 {
        font-size: 2.5em;
        text-align: center;
        padding: 0;
    }

    .intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2em;
        width: 100%;
        padding : 1em;
        text-align: center;
    }

    .intro-title {
        width: 100%;
    }

    .intro-intro {
        width: 100%;
    }

    .intro-text {
        width: 100%;
    }

    .intro-button {
        margin: auto;
        width: 40%;
    }

    .intro-vid {
        width:100%;
    height:auto;
      aspect-ratio:   16/9; /* Maintenir un ratio d'aspect pour les vidéos */   
    }

    .cta-block {
        margin: 0;
    }

    #preview {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #preview p {
        font-size: 1.125em;
    }

    .accomodations-preview,
    .pool-preview,
    .living-preview {
    width: 100%;  
    margin-bottom: 20px;
    flex-direction: column;
    height: auto;
    padding: 1em 0;
    }

    .swiper-container,
    .card-container {
        width: 100%;
        height: auto;
    }

    .swiper {
        width: 90%;
        height: 300px;
        padding: 1em;
    }

    .card-flex {
        width: 100%;
        height: auto;
        padding: 1em;
        gap: 1em;
    }

    .card-p,
    .card-flex button {
        font-size: 1.125em;
        padding: 0.5em;
    }

    .card-title {
        font-size: 1.3em;
    }

    .card-title,
    .card-p {
        letter-spacing: 0.1em;
    }

    .preview-txt {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 1em;
    }

    .preview-txt button {
        font-size: 1.2em;
    }

    h1 {
        font-size: 1.8em;
    }

    .ulu-container {
        padding-top : 2em;
    }
    
    .ulu {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        margin-top: 1.5em;
    }

    .ulu-left,
    .ulu-right {
        width : 100%;
        height:auto;
    }

    .review {
        flex-direction: column;
        align-items: center;
        padding: 1em;
    }

    .review-card {
        width : 90%;
        height: auto;
        padding : 1em;
    }

    .inquiry-container {
        display: flex;
        flex-direction: column;
    }

    .inquiry {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 2em;
        gap: 1em;
    }

    .inquiry-logo {
        width: 80%;
        min-width : 80%;
        height: auto;
        align-self: center;
    }

    .inquiry-aside {
        height: auto;
        overflow: hidden;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 1em;
    }

    .inquiry-aside a {
        display: inline-block;
        background-color: var(--text-titles) !important;
        border-radius: 10px;
        color:var(--bg-body-1);
        border: 1px solid var(--bg-body-);
        font-weight: 700;
        text-align: center;
        width: auto;
        margin: 0 auto 0.5em auto;
        padding : 0.5em 1em;
        font-size: 1em;
    }

    .inquiry-aside-title {
        font-size : 1.125em;
    }

    .inquiry-aside-txt {
        font-size: 1em;
    }
    /* ----------------------------------RESP FOOTER  */
    .legal {
        padding-bottom: 6em;
    }
    
    .footer {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-address {
        width: 90%;
        text-align: center;
    }

    .footer-address img {
        margin:auto
    }

    #map {
        width: 100%;
        height : 200px;
        margin: auto;
    }
    
    .footer-nav li {
        padding-left: 0;
        text-decoration: none;
        font-weight: 800;
    }

    ul {
        padding: 0em;
    }
}
@media screen and (max-width: 767px) {


}
@media screen and (min-width: 992px) {
    #menu-button {
        display: none;
        }
    #fixed-btn {
        display: none;
        }

}
    
/* ----------------------------------- VILLA PAGE*/
.preview-container-villa {
    margin: 0em 0em 2em 0em;
    overflow: hidden;
    position : relative;
}

.part1 {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    margin:8em auto 8em auto;
    gap: 2em;
}

.part1-left {
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
    font-family: var(--font-family-secundary);
    color : var(--text-titles);
    font-size: 1.125em;
    justify-content: center;
    padding: 1em;
}

.part1-left h2 {
    all: unset;
    font-weight: 800;
    font-size: 1.3em;
}
.intro-intro {
    font-size: 1.2em;
}

.part1-right {
    font-family: var(--font);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: auto;
    width : 100%;
}

.high-title {
    margin: 2em auto 1em auto;
    text-align: center;
}

.highlight {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    }

/* ----------- SLIDER ------------ */

.services-title {
    font-size: 3em !important;
    padding-left: 2.3em !important;
}

#bedrooms h3, #living-area h3, #pool-area h3 {
    font-size: 3em;
    padding: 0.5em;
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
}

#bedrooms {
    position: relative;
    margin-bottom: 50em;
    width: 100%;
    height: auto;
}

#bedrooms .swiper {
    width: 100%;
    padding: 0;
    margin:0;
    height: 600px;
    object-fit: cover;
}

#bedrooms-swiper .swiper{
    width: 100%;
    height: 100%;
    padding : 0em;
  }

.swiper-slide {
    text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.details {
    width: 75%;
    height: auto;
    background-color: var(--bg-body-);
    padding : 2em;
    position : absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-10%);
    color: var(--text-titles);
}

.details p {
    line-height: 2em;
    padding: 1em 0;
}

.details li {
    list-style: none;
    line-height: 2em;
    padding: 0.5em 0;
}

.icon::before{
    content: '';
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    background-size: contain;
    margin-right: 0.5rem;
    vertical-align:middle;
}

.bed::before{
    background-image: url('./icons/svg_repo/bed-double-heart-svgrepo-com.svg');
}

.private-amen::before {
    background-image: url('./icons/svg_repo/shower-2-svgrepo-com.svg');
}

.a-c::before{
    background-image: url('./icons/svg_repo/air-conditioner-svgrepo-com.svg');
}

.view::before{
    background-image: url('./icons/svg_repo/view-horizont-svgrepo-com.svg');
}

.cupboard::before{
    background-image: url('./icons/svg_repo/cupboard-dresser-svgrepo-com.svg');
}



#living-area {
        position: relative;
        margin-bottom: 40em;
        width: 100%;
        height: 80%;
}

#living-area .swiper {
    width: 100%;
    padding: 0;
    margin:0;
    height: 600px;
    object-fit: cover;
}

#living-area-swiper .swiper{
    width: 100%;
    height: 100%;
    padding : 0em;
  }

.living-area-details {
    width: 75%;
    height: auto;
    background-color: var(--bg-body-);
    padding : 2em;
    position : absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-30%);
    text-align: center;
}

.fridge::before{
    background-image: url('./icons/svg_repo/refrigerator-kitchen-food-cooking-kitchenware-cook-svgrepo-com.svg');
}

.wood::before{
    background-image: url('./icons/svg_repo/wood-board-wood-svgrepo-com.svg');
}

.window::before{
    background-image: url('./icons/svg_repo/glass-window-svgrepo-com.svg');
}

#pool-area {
    position: relative;
    margin-bottom: 40em;
    width: 100%;
    height: 80%;
}

#pool-area .swiper {
    width: 100%;
    padding: 0;
    margin:0;
    height: 600px;
    object-fit: cover;
}

#pool-area-swiper .swiper{
    width: 100%;
    height: 100%;
    padding : 0em;
  }

.pool-area-details {
    width: 75%;
    height: auto;
    background-color: var(--bg-body-);
    padding : 2em;
    position : absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-30%);
    text-align: center;
}

.pool::before{
    background-image: url('./icons/svg_repo/pool-2-svgrepo-com.svg');
}

.sunset::before{
    background-image: url('./icons/svg_repo/sunset-svgrepo-com.svg');
}

#services {
    background-color:var(--text-titles);
    color:var(--bg-body-);
    width: 100%;
    height: 600px;
    display: flex; 
    justify-content: center;
    padding: 3em;
    gap: 4em; 
    margin: 0em auto 10em auto;
}

.services-card {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 300px;
}

.services-card-title {
    font-weight: 700;
    font-size: 1.3em;
    padding: 1em 0;
}

#services img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    
}

#services p {
    padding: 1em 0;
    line-height: 2em;
}

/* ------------------------------------- VILLA MEDIA QUERIES */

@media screen and (max-width: 991px) {
    .part1 {
        display:flex;
        flex-direction: column;
        margin: 2em auto 6em auto;
    }

    #bedrooms {
        margin-bottom: 70em;
    }

    #living-area {
        margin-bottom: 50em;
    }

    #pool-area {
        margin-bottom: 50em;
    }

    #bedrooms h3, #living-area h3, #pool-area h3 {
        font-size: 2em;
        padding: 0em;
        margin: 0;
        width: 100%
    }

    .details {
        width: 90%;
        text-align: center;
        padding: 1em;
        margin: auto;
        transform: translateX(-50%) translateY(-10%);
    }

    .details p, .details ul {
        padding: 1em 0 1em 0;
    }

    #services {
        margin-bottom: 4em;
        height: 600px;
        padding: 2em 1em 2em 1em;
        gap: 2em;
    }

    #services .services-card {
        height: 600px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    } 

    #services img {
        width:100%;
        height: 150px;
        object-fit: cover;
    }

    #services p {
        overflow: auto;
        flex-grow: 1;
    }

    .services-card-title {
        font-size: 1.1em;
    }
}
