@font-face {
  font-family: 'Questrial';
  src: url(../fonts/Questrial/Questrial-Regular.ttf);
}
@font-face {
  font-family: 'Love';
  src: url(../fonts/Love_Light/LoveLight-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

.body-index footer {
  display: none;
}
footer {
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
  gap: 1rem;
  flex-wrap: nowrap;
}
footer span {
  font-family: 'Love';
  font-size: 1.75rem;
  height: 16px;
  line-height: 16px;
}

body,
.accordion-body {
  background-image: url(../images/header.png);
  /*background-color: lightgray;*/
  font-family: 'Questrial', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

h1,
h2,
h3,
h5 {
  font-family: 'Love';
}

h1 {
  /* brand on nav */
  font-size: 2.75rem;
  margin-top: 1rem;
  color: #fcaf45;
}
h2 {
  /* title on carousel index */
  font-size: 6rem;
}
h3 {
  /* title on pages: expat, mondial, maison */
  font-size: 4rem;
}
h4 {
  /* title on pages: destinations */
  font-size: 3rem;
}
h4 span {
  font-size: 2rem;
}
h5 {
  /* title on post's modal */
  font-size: 2rem;
  color: #fcaf45;
}
h6 {
  /* trips title on pages: destinations */
  font-size: 1.5rem;
}

/* ########### page index ########### */
.body-index .header {
  background-image: none;
}
.body-index .header .brand {
  display: none;
}
.body-index .hamburger {
  position: fixed;
  top: 0.75rem;
  right: 1.5rem;
}
.body-index .bar {
  background-color: white;
}

/* ########### page index - principale ########### */
.row-one {
  height: 97vh;
}
.col-two {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.col-two .background_h {
  display: none;
}
.col-two .background_v {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.col-two .background_v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.col-two .brand-index {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.col-two .brand-index .logo {
  width: 80vw;
}
.col-two .brand-index p {
  font-size: 1.15rem;
  width: fit-content;
  margin: 0 auto;
  background-color: #fcaf45;
  padding: 0 0.5rem;
  border-radius: 1.15rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.col-two .text-arrows {
  text-align: center;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 100%;
}
.col-two .text-arrows .description {
  width: 80%;
  margin: 0 auto 8rem auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  color: black;
}
.col-two .text-arrows .title,
.col-two .text-arrows svg {
  text-shadow: rgba(0, 0, 0, 1) 4px 4px 4px;
  font-family: 'Love';
  color: #fcaf45;
  font-size: 3rem;
}
.col-two .text-arrows a:hover svg {
  color: #ffffff;
}

/* ########### page index - publications ########### */
.row-two {
  padding: 5rem 0;
}

.row-two .publication {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: black;
  text-align: center;
  width: 95%;
  margin: 1rem auto;
}
.row-two .publication .publication-header {
  text-align: center;
  border-bottom: 1px solid #fcaf45;
}
.row-two .publication .title {
  font-family: 'Love';
  font-size: 3rem;
  color: #fcaf45;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  line-height: 3.2rem;
}
.row-two .publication .body {
  padding: 1rem;
}
.row-two .publication .body .lieux {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 0.5rem;
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto;
}
.trip-date {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0 0.5rem;
  border-radius: 1rem;
  width: fit-content;
  white-space: nowrap;
  display: inline-block;
}
.row-two .publication .body .text {
  text-align: center;
}
.row-two .links-destinations ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vh;
  justify-content: center;
}
.row-two .links-destinations .keywords span,
.row-two .links-destinations .keywords a {
  color: #fcaf45;
}

.row-two .publication .body .desktop {
  display: none;
}
.row-two .photos .gallery {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.row-two .photos .gallery > img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 5px;
}

/* ########### header nav ########### */
li {
  list-style: none;
}
a {
  color: white;
  text-decoration: none;
}
.menu-link {
  cursor: pointer;
}
.menu-link img {
  width: 16px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 50px;
  background-image: url(../images/header.png);
}
.header a.active {
  font-family: 'Love';
  font-size: 2rem;
  color: #fcaf45;
}

/* #### menu hamburger #### */
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fcaf45;
}
.hamburger {
  display: block;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-right {
  position: fixed;
  top: 50px;
  right: -100%;
  transition: 0.3s;
  gap: 0;
  flex-direction: column;
  text-align: right;
  background-image: url(../images/header.png);
  width: 45vw;
}
.header-right .menu-item {
  margin: 1rem 0;
  padding-right: 1rem;
}
.header-right.active {
  right: 0;
}

/* #### modal contact form in header #### */
#index .modal-header,
header .modal-header {
  height: 4rem;
}
#index .modal-title,
header .modal-title {
  font-family: 'Love';
  font-size: 3rem;
  color: #fcaf45;
}
#index form,
header form {
  display: table;
  color: black;
  text-align: left;
}
#index .modal-body label,
#index .modal-body input,
#index .modal-body textarea,
header .modal-body label,
header .modal-body input,
header .modal-body textarea {
  display: table-cell;
  width: 21rem;
  margin-bottom: 1rem;
}
#index .modal-body textarea,
header .modal-body textarea {
  height: 10rem;
}
.send {
  background-color: #fcaf45;
  border: solid 1px #fcaf45;
  border-radius: 5px;
  padding: 5px;
  color: white;
}
.send:hover {
  background-color: white;
  color: inherit;
}

/* #### ribbon image on pages #### */
.panel_page img {
  display: none;
}
.ribbon,
.ribbon-destinations {
  margin-top: 50px;
}
.ribbon .heading-text,
.ribbon-destinations .heading-text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.ribbon .heading-text {
  margin-top: 5rem;
}
.ribbon-destinations .heading-text {
  margin-top: 7rem;
}
.ribbon-destinations .heading-text p {
  margin-top: -1rem;
}
#ribbon-image,
.photo-note {
  display: none;
}
.brand-index .heading-text a,
.ribbon .heading-text a {
  display: none;
}

#destinations .desktop {
  display: none;
}
#destinations .link-destinations .links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vh;
  justify-content: center;
}
#destinations .link-destinations .links li {
  background-color: #fcaf45;
  border-radius: 5px;
  padding: 5px;
  height: 4vh;
  text-align: center;
}

/* ########### search bar ########### */
.search {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search svg {
  color: #fcaf45;
}
#search {
  width: 100%;
  background: initial;
  border: none;
  border-bottom: 1px solid #fcaf45;
}
#search:focus {
  background: white;
  outline: none;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
.left {
  justify-content: flex-end;
}
.buttons .btn-france {
  display: flex;
  gap: 1.5vh;
}
.buttons button {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: none;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ########### buttons up + back ########### */
#upButton {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 6%;
  transform: rotate(-90deg);
  background: none;
}
#upButton,
#backButton {
  color: #fcaf45;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999;
}
#backButton {
  position: fixed;
  left: 5%;
  top: 8%;
  background-color: initial;
}

/* #### image gallery on pages: itinerary, expat, international, maison #### */
ul {
  list-style: none;
  margin-left: -2rem;
}
.image-gallery-index,
.image-gallery {
  display: flex;
  gap: 1.5vh;
  flex-wrap: wrap;
}
.image-gallery-index > li {
  flex: 1 1 40%;
  height: 12vh;
  position: relative;
}
.image-gallery > li {
  flex: 1 1 auto;
  height: 200px;
  position: relative;
}
.image-gallery-index li img {
  display: none;
}
.image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-gallery-index .overlay,
.image-gallery .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: rgb(0, 0, 0) 0 0 4px;
  border-radius: 5px;
}
.image-gallery-index .overlay,
.image-gallery .overlay {
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* #### image gallery on destinations #### */
#sectionDesktop {
  display: none;
}
#accordionMobile {
  width: 95%;
  margin: 0 auto;
}

#accordionMobile .accordion-item {
  border: none;
  margin: 0.5rem 0;
}
#accordionMobile .accordion-button {
  background: white;
  border: none;
  outline: none;
}
#accordionMobile .accordion-button:focus {
  background: #fcaf45;
  outline: none;
  color: black;
}
#accordionMobile .accordion-body {
  border: none;
}

.image-gallery-destination {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.date_section {
  padding-top: 10px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.date_section a {
  display: none;
}
.date_section .else {
  color: #fcaf45;
}

.image-gallery-destination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.image-gallery-destination > img {
  flex: 1 1 auto;
  width: 90%;
  max-height: 25rem;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 5px;
}

/* ################ ######### ################ */
/* ################ LANDSCAPE ################ */
/* ################ ######### ################ */
@media screen and (orientation: landscape) {
}
/* ################ ###### ################ */
/* ################ TABLET ################ */
/* ################ ###### ################ */
@media screen and (min-width: 576px) {
  .header-right {
    width: 18vw;
  }
  #index .modal-body label,
  #index .modal-body input,
  #index .modal-body textarea,
  header .modal-body label,
  header .modal-body input,
  header .modal-body textarea {
    width: 29rem;
  }

  /* #### button for modal/carousel on destinations #### */
  .date_section a {
    display: block;
    padding: 5px;
    color: #fcaf45;
    margin-left: auto;
    margin-right: auto;
  }
  .date_section a:hover {
    color: white;
  }
  /* #### modal on destinations #### */
  .container-destinations .modal .modal-dialog .modal-content .modal-header {
    height: 3rem;
  }
  .container-destinations .modal .modal-dialog .modal-content {
    background-color: rgb(39, 39, 39);
  }
  /* #### carousel on modal #### */
  .container-destinations .carousel-inner .carousel-item {
    position: relative;
    height: 82vh;
  }
  .container-destinations .carousel-inner .carousel-item img {
    object-fit: cover;
    margin: auto;
    height: 100%;
  }
}

/* ################ TABLET ################ */
@media screen and (min-width: 768px) {
}

/* ################ ####### ################ */
/* ################ DESKTOP ################ */
/* ################ ####### ################ */
@media screen and (min-width: 1080px) {
  h1 {
    /* brand on nav */
    font-size: 3rem;
    margin-top: 1rem;
    color: white;
  }
  h3 {
    /* title on pages: publications, expat, mondial, maison */
    font-size: 6rem;
    font-family: 'love';
  }
  h4 {
    /* title on pages: destinations */
    font-size: 5rem;
    text-shadow: rgb(0, 0, 0) 0 0 4px;
  }
  h4 span {
    font-size: 3rem;
    text-shadow: rgb(0, 0, 0) 0 0 4px;
  }
  h6 {
    /* places on pages: destinations */
    text-shadow: rgb(0, 0, 0) 0 0 4px;
  }
  h1:hover,
  h2 a:hover {
    color: #fcaf45;
  }

  .body-index .header-right {
    left: 0;
    gap: 4rem;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .body-index .header-right .menu-item {
    margin: 0.75rem 1rem 0 0;
  }

  .col-one {
    width: 50px;
    height: 100vh;
  }
  .desktop .btn-offcanvas {
    margin: 0;
    padding: 0;
    color: white;
    background-color: initial;
    border: none;
    outline: none;
    z-index: 999;
    transform: rotate(-90deg);
    text-wrap: nowrap;
    position: absolute;
    top: 15%;
    left: -150%;
  }
  .col-one .btn-offcanvas:hover {
    color: #fcaf45;
  }
  .col-one .offcanvas {
    margin-left: 50px;
    width: 21vw;
    height: initial;
    margin-bottom: inherit;
  }
  #index .desktop {
    display: flex;
  }
  #index .mobile {
    display: none;
  }
  .col-one .offcanvas .image-gallery-index li:hover .overlay {
    background: rgba(65, 65, 65, 0.5);
    transition: all 0.2s 0.1s ease-in-out;
    font-size: 1.25rem;
  }

  .col-two .background_v {
    display: none;
  }
  .col-two .background_h {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .col-two .background_h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .col-two .brand-index {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .col-two .brand-index .logo {
    height: 50vh;
    width: inherit;
  }
  .col-two .text-arrows .description {
    display: none;
    width: 40%;
    margin: 0 auto 1rem auto;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: black;
  }

  .hamburger {
    display: none;
  }
  .header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: inherit;
    top: inherit;
    right: inherit;
    transition: inherit;
    gap: 1.5rem;
    flex-direction: inherit;
    text-align: inherit;
    background-image: inherit;
    width: inherit;
  }
  .header-right .menu-item {
    padding-right: inherit;
    cursor: pointer;
    margin: 0 1rem 0 0;
  }
  .header-right.active {
    right: inherit;
  }
  .menu-link:hover,
  .brand:hover {
    color: #fcaf45;
  }
  .header a.active:hover {
    color: white;
  }

  /* ########### page index - publications ########### */
  .row-two .publication {
    width: 50%;
  }
  .row-two .publication .publication-header {
    text-align: left;
  }
  .row-two .publication .title {
    line-height: inherit;
  }
  .row-two .publication .body .lieux {
    margin: inherit;
    text-align: left;
  }
  .row-two .publication .body .text {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
  .row-two .publication .body .text .date {
    width: 15%;
    border-right: 1px solid #fcaf45;
    padding-right: 1rem;
  }
  .row-two .publication .body .text .description {
    width: 85%;
    padding-left: 1rem;
  }
  .row-two .publication .body .mobile {
    display: none;
  }
  .row-two .publication .body .desktop {
    display: block;
  }
  .row-two .photos .gallery {
    gap: 20px;
  }
  .row-two .photos .gallery > img {
    width: 10rem;
    height: 10rem;
  }

  footer {
    gap: 2rem;
  }

  /* ########### search bar ########### */
  .search {
    margin-top: 2rem;
  }
  .buttons button:hover {
    background-color: #fcaf45;
  }

  /* ########### buttons up + back ########### */
  #upButton {
    bottom: 4%;
  }
  #backButton:hover,
  #upButton:hover {
    color: white;
  }
  #backButton {
    left: 1%;
    top: 9%;
  }

  /* ########### ribbon ########### */
  .ribbon {
    position: relative;
    max-height: 95vh;
  }
  .ribbon-destinations {
    position: relative;
    margin-top: inherit;
    max-height: 60vh;
  }
  .ribbon .panel_page_blur,
  .ribbon-destinations .panel_page_blur {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /*backdrop-filter: blur(2px);*/
    z-index: 1;
  }
  .ribbon-destinations .panel_page_blur {
    width: 30vw;
  }
  .ribbon .panel_page_blur {
    width: 50vw;
  }
  .ribbon .panel_page img {
    display: block;
    object-fit: cover;
    max-height: 95vh;
    width: 100%;
    height: 100%;
  }
  .ribbon-destinations .panel_page img {
    display: block;
    object-fit: cover;
    max-height: 60vh;
    width: 100%;
    height: 100%;
  }
  .ribbon .panel_page .france {
    object-position: top;
  }
  .ribbon .heading-text,
  .ribbon-destinations .heading-text {
    position: absolute;
    top: 40%;
    z-index: 30;
    color: white;
    margin-top: 5rem;
    width: inherit;
  }
  .ribbon .heading-text {
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 40vw;
  }
  .ribbon-destinations .heading-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    right: 2%;
    transform: translate(-2%, -50%);
    text-align: right;
    width: 70%;
  }
  .ribbon .heading-text p {
    margin-top: -1rem;
  }

  .ribbon-destinations .heading-text p,
  .photo-note {
    background-color: rgba(0, 0, 0, 0.5);
    width: fit-content;
    padding: 0 0.5rem;
    border-radius: 1rem;
  }
  #ribbon-image {
    display: block;
  }
  .photo-note {
    display: block;
    color: #fcaf45;
    position: absolute;
    bottom: 0;
    right: 3%;
  }
  .brand-index .heading-text a,
  .ribbon .heading-text a {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .brand-index .heading-text a:hover,
  .ribbon .heading-text a:hover {
    color: #fcaf45;
  }
  #destinations .link-destinations {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(-5%, -50%);
    z-index: 30;
  }
  #destinations .link-destinations {
    width: 30vw;
    margin-top: 30px;
  }
  #destinations .mobile {
    display: none;
  }
  #destinations .desktop {
    display: block;
  }
  #destinations .link-destinations .links ul {
    display: inherit;
    flex-wrap: inherit;
    gap: inherit;
    justify-content: inherit;
  }
  #destinations .link-destinations .links li {
    height: inherit;
    padding: inherit;
    text-align: inherit;
    background-color: inherit;
  }
  #destinations .link-destinations .links li a:hover {
    color: #fcaf45;
  }
  #destinations .link-destinations .links li a .date {
    margin-bottom: -0.25rem;
  }
  #destinations .link-destinations .links li a .text {
    display: block;
  }

  /* #### image gallery on pages: itinerary, expat, international, maison #### */
  .image-gallery li:hover .overlay {
    background: rgba(57, 57, 57, 0.502);
    transition: all 0.2s 0.1s ease-in-out;
    font-size: 1.25rem;
  }

  .image-gallery::after {
    content: '';
    flex-grow: 999;
  }

  /* #### accordion on destinations #### */
  #accordionMobile {
    display: none;
  }
  #sectionDesktop {
    display: block;
  }

  /* #### image gallery on destinations #### */
  .date_section {
    width: 70%;
  }

  .image-gallery-destination > img {
    width: inherit;
    max-height: inherit;
    height: 19rem;
  }
  .image-gallery-destination::after {
    content: '';
    flex-grow: 999;
  }
}
