*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
    --blue:#0070B6;
    --txt-color:#1E1E1E;
    --bg-light-grey:#F4F5F6;
}


html {
  color: #000000;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */

  -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-box-sizing:border-box;
  box-sizing:border-box;
	font-size: 62.5%; /* R�-�quilibrage du Rem face au Pixel pour des calculs simples / 1.0rem = 10px */
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0;
    overflow-x: hidden;
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.1vw, 1.6rem);
    line-height: 1.4;
}

::-moz-selection {
  background: var(--blue);
  color: white;
  text-shadow: none;
}

::selection {
  background: var(--blue);
  color: white;
  text-shadow: none;
}

/* ==========================================================================
   Normalize
   ========================================================================== */

img {
	max-width: 100%;
}
li::marker {
    color: var(--blue);
}
div#hygiene li {
    list-style: square;
}
main {
  display: block;
}
.container {
    max-width: 1920px;
    padding: 0;
      margin: auto;
      background-color: #FFFFFF;
  }
  
  main .container {
      /*padding: 52px 0px;*/
  }
  .section {
      padding: 52px 40px;
  }


/*COMPONENTS*/
label {
    color: var(--txt-color);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
button, input, optgroup, select, textarea {
    font-family: inherit;
    border-radius: 4px;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    background: white;
    outline: none;
    border: 1px solid #C4C4C4;
    padding: 8px;
}
input:focus, textarea:focus {
    border: 1px solid var(--blue);
    transition: 0.2s;
}
.btn {
    background: var(--blue);
    color: white;
    padding: 16px 24px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    border: 2px solid var(--blue);
}
a.btn:hover {
    background: #ffffff;
    color: var(--blue);
    transition: 0.2s;
}
.btn-2 {
    color: var(--pink);
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 3px solid;
}


.bouton_bleu {
    background: var(--blue);
    color: white!important;
    padding: 16px 24px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    justify-content: center;
    border: 2px solid var(--blue)!important;
	margin:20px;
}
a.bouton_bleu:hover {
    background: #ffffff;
    color: var(--blue)!important;
    transition: 0.2s;
}




/* header */
header {
    max-width: 1920px;
    margin: 0 auto;
}
.icones-header {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
#header-content {
    display:flex;
    justify-content: space-between;
    margin:0 40px;
    position: relative;
    z-index: 9;
}

#branding {
    text-align:left;
    width: 20%;
    min-width:270px;
    margin:20px 0;
    position: relative;
}


#topbar {
    display: flex;
    border-bottom: 6px solid var(--pink);
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
    height: 100px;
    background: white;
}

#raccourcisbar {
    display:none;
    justify-content: flex-end;
    gap:10px;
    align-items: center;
}

#btnsbar {
    display:flex;
    justify-content: space-between;
    gap:10px;
}

#uci_link {
    display:none;
}


/* menu principal */
.main-nav {
    z-index:999;
}
.main-nav a {
    text-decoration:none;
}
li.main-lvl1-nav__item:hover {
    color: var(--blue);
}
@media (min-width: 1500px) {
    .main-lvl1-nav__link {
        font-size: 2rem !important;
      } 
}

@media (min-width: 1025px) {
    #btn-menu-header, #btn-search-header {
        display:none!important;
    }
  .main-nav {
    display: flex;
    justify-content: space-between;
    width:100%;
  }

  /*-------------- MENU > LVL 1 */
  .main-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    display: flex;
    justify-content: space-around;
    width:100%;
  }
  .main-lvl1-nav__item {
    position: relative;
    padding:2px 4px;
    margin:0;
    z-index: 0;
  }
  .main-lvl1-nav__link {
    color: var(--txt-color);
    font-weight: 500;
    font-size: 1.7rem;
    padding: 4px 8px;
    white-space: nowrap;
    display: block;
    text-align: center;
    position: relative;
  }
  .main-lvl1-nav__link:hover {
    color: var(--pink);
    transition: 0.2s;
  }
  .main-lvl1-nav__link::before {
    content: url(/images/motifs/nav-motif.png);
    position: absolute;
    top: 0;
    transition: 0.2s;
    left: -6px;
    z-index: -1;
    opacity: 0;
  }
  li.main-lvl1-nav__item:hover .main-lvl1-nav__link::before {
    opacity: 1;
  }

/*-------------- MENU > LVL 2 */
.main-lvl2-nav__list {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    flex: none;
    position: absolute;
    z-index: 10;
    top: 80%;
    right: 0;
    left: 0;
    border-bottom: 4px solid var(--yellow-secondary);
    list-style: none;
    padding: 16px;
    margin: 0 auto 0 auto;
    width: 260px;
    background-color: #FFF;
}
.main-lvl1-nav__item:hover .main-lvl2-nav__list {
    opacity: 1;
    visibility: visible;
    padding-top: 25px;
}
li.main-lvl2-nav__item a {
    color: var(--txt-color);
    font-weight: 500;
}
li.main-lvl1-nav__item.trad a {
    display: flex;
    align-items: center;
    gap: 8px;
}

  
}
@media (max-width: 1200px) {
    .main-lvl1-nav__link,.main-lvl2-nav__link {
        font-size: 1.6rem;
    }
    .main-lvl1-nav__item {
        padding: 2px 2px;
    }
   
}
@media (max-width: 1024px) {
    #raccourcisbar {
        display:flex;
        justify-content: flex-end;
        gap:10px;
        align-items: center;
    }
    li.main-lvl1-nav__item.trad a img{
        display: none;
    }
    
}





/*FOOTER*/
footer {
    padding: 16px 40px;
    gap: 24px;
    background: var(--txt-color);
    display: flex;
    font-weight: 600;
    max-width: 1920px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
footer a {
    color: #ffffff; 
    text-align: center;
}
footer p {
    margin: 0px;
    color: white;
}

/*TEXTES*/
h1 {
    font-size:3rem;
    color:var(--txt-color);
    margin:0;
    padding:0;
}
h2 {
    font-size: 3.4rem;
    color: var(--txt-color);
    margin: 0 0 32px;
    padding: 0px;
    position: relative;
}
h3 {
    font-size:2.4rem;
    color: var(--txt-color);
    margin: 24px 0 32px;
    padding:0;
}
a {
    text-decoration:none;
}
p {
    color: var(--txt-color);
}




/* small screen */

@media (max-width: 1025px) {
  header, main {
      background-color: #fff;
  }
  .logo-footer-desktop {
    display: none;
  }
  .logo-footer-mobile {
    display: block;
  }
  #footer-contact-logo {
    text-align: center;
    position: relative;
}
    footer .container {
        padding: 120px 40px 40px;
      }

    .container {
        max-width:100%;
    }
    #btn-menu-header, #btn-search-header {
        display:block;
    }
    .icones-header a img {
        width: 20px;
        margin-left: 5.4px;
        margin-top: 5px;
    }
    #header-content {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }    

    #menusbar {
        width:100%;
    }    
    #topbar {
        width:100%;
        margin:0px;
        padding:0px;
        flex-direction:column-reverse;
    }
    
    #branding {
        width: 100%;
    text-align: left;
    padding-left: 40px;
    margin: 4px 0;
    }
    
    #header-recherche {
        display:none;
    }
    
    #raccourcisbar {
        width:100%;
        padding-right:0px;
        position: absolute;
        top: 34px;
        right: 40px;
    }
    #btnsbar a,.icones-header a {
        background-color:#534f43;
        text-decoration:none;
        display:block;
        width:32px;
        height:32px;
        border-radius:50%;
        background-repeat:no-repeat;
        background-position:center;
        transition:0.5s all ease-in;
        margin:10px 0;
    }
    .icones-header {
        gap: 8px;
    }
    #raccourcisbar a span {
        display:none;
    }
    
    #btn-accessibilite {
        display:none;
    }

}



/*BANDEAU*/
.bandeau {
    background: var(--bg-light-grey);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*PHOTOS*/
.photos-villa {
    display: flex;
    flex-direction: revert;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}
.autres-photos img {
    width: calc(100% / 2 - 8px);
}
.autres-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex: 2;
    position: relative;
}
.photo-principale {
    flex: 2;
    margin-right: 24px;
    display: flex;
}
.photo-principale img {
    width: 100%;
}
.btn-photos a img {
    width: 24px;
    margin-right: 8px;
}
.btn-photos {
    position: absolute;
    bottom: 52px;
    display: flex;
    right: 52px;
    z-index: 8;
    width: fit-content;
    background: #ffffffbf;
    justify-content: center;
    align-items: center;
}
.btn-photos a {
    padding: 0 12px;
    display: flex;
}

/*QUOTE*/
.quote {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0 52px;
}
.quote h2 {
    margin: 0px;
    text-align: center;
}
.quote span {
    color: var(--blue);
}


.col-2 {
    display: flex;
    padding: 0 40px;
    margin-bottom: 72px;
}
.droite {
    flex: 1.5;
    padding-left: 24px;
}
.gauche {
    flex: 3;
    padding-right: 40px;
    border-right: 2px solid #1e1e1e45;
}
.gauche .container {
    border-bottom: 2px solid #1e1e1e45;
    margin-bottom: 52px;
    padding-bottom: 32px;
}

/*DESCRIPTION*/
.description-globale h2 {
    color: var(--blue);
}
.contenu {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.localisation {
    display: flex;
    gap: 8px;
}
.localisation p {
    font-weight: 600;
}
.contenu p {
    color: var(--blue);
    font-weight: 600;
}
.description p {
    text-align: justify;
}

/*ATOUTS*/
.atouts-liste {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.atout {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px;
}
.atout p {
    color: var(--blue);
    font-weight: 600;
}
.liste-pieces {
    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
}

/*LOCALISATION*/
div#localisation {
    border-bottom: none;
}


/*STICKY*/
.reservation, .reglement, .contact {
    background-color: var(--bg-light-grey);
    padding: 24px;
}
.reservation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.calendrier-arrivee-depart {
    background: red;
    width: 300px;
    display: none;
    height: 200px;
    position: absolute;
    left: -300px;
    bottom: 0;
}
.arrivee, .depart {
    position: relative;
}
.reglement {
    text-align: center;
}
.reglement a {
    color: var(--blue);
    font-weight: 500;
    border-bottom: 2px solid;
}
.sticky {
    gap: 16px;
    display: flex;
    flex-direction: column;
    position: sticky;
    position: -webkit-sticky;
    top: 32px;
}
.contact a {
    color: black;
    font-weight: 500;
}
.tel, .mail {
    gap: 8px;
    display: flex;
    align-items: center;
}
.mail {
    margin-top: 16px;
}
.calendrier {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calendrier p {
    margin: 0 2px;
}





@media (max-width: 1000px) {
    .col-2 {
        padding: 40px;
        flex-direction: column;
    }

    .gauche {
        padding-right: 0px;
        border-right: none;
    }
    .droite {
        padding-left: 0px;
    }
    .calendrier-arrivee {
        left: 0px;
        bottom: 58px;
    }
    .contenu p {
        margin: 0px 0;
    }
    .calendrier-arrivee-depart {
        left: 0px;
        bottom: 58px;
    }
}


@media (max-width: 720px) {
    .liste-pieces {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .quote img {
        width: 50px;
    }
    .autres-photos {
        display: none;
    }
    .photo-principale {
        margin-right: 0px;
    }
}
