/* Mixin for media query */
/* ================= */
/* Variable */
/* ================= */
.br {
  border: 1px red solid; }

/* General */
/* ================= */
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

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

strong {
  font-size: 20px; }

h1 {
  font-family: "Great Vibes";
  font-size: 80px;
  text-align: center;
  color: #e5e1b1; }

@media only screen and (max-width: 795px) {
  h1 {
    font-size: 60px;
    padding-top: 30px; } }

h2 {
  text-wrap: nowrap; }

h3 {
  color: #e5e1b1;
  font-family: "Poiret One"; }

.button {
  border: 1px #000a0f solid;
  border-radius: 2rem;
  background-color: #dfe4d1;
  box-shadow: #000a0f 0 5px 5px 0px;
  padding: 10px;
  padding-top: 7px; }
  .button a:link {
    color: #000a0f;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold; }

.button:active {
  box-shadow: #000a0f 0 0 0 0; }

.social-media-icon {
  width: 50px;
  padding: 10px; }

.section {
  padding: 5rem 1rem 5rem 1rem;
  width: 100%; }

/* Header */
/* ================= */
.header {
  height: 100vh; }

.header .top-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000a0f;
  color: #e5e1b1; }

@media only screen and (max-width: 795px) {
  .top-bar {
    flex-direction: column; } }

.header .top-bar .infos {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "Forum";
  text-align: center;
  font-size: 14px; }
  .header .top-bar .infos p {
    margin-top: 5px;
    margin-bottom: 0; }
  .header .top-bar .infos__button {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 2px #e5e1b1 solid;
    padding: 0.7rem; }

@media only screen and (max-width: 795px) {
  .top-bar .infos {
    order: 2; } }

.header .top-bar .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .header .top-bar .logo__text {
    font-family: "Poiret One";
    text-align: center;
    font-size: 14px;
    color: #e5e1b1; }

@media only screen and (max-width: 795px) {
  .header .top-bar .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
    margin-bottom: 20px; }
    .header .top-bar .logo__img {
      height: 100px;
      margin-bottom: 10px; } }

.header .social-media-desktop {
  display: flex;
  flex-direction: row; }

@media only screen and (max-width: 795px) {
  .header .social-media-desktop {
    display: none; } }

.header .social-media-mobile {
  display: none; }

@media only screen and (max-width: 795px) {
  .header .social-media-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 0.5rem; } }

.header .header-picure {
  background-image: url(../assets/header/header.jpg);
  background-position: center;
  background-size: cover;
  height: 100%; }

.header .arrow {
  position: absolute;
  height: 40px;
  left: 50%;
  transform: translate(-50%);
  bottom: 20px; }

@media only screen and (max-width: 795px) {
  .header .arrow {
    height: 30px; } }

/* Welcome section */
/* ================= */
.welcome {
  background-color: #000a0f;
  color: #e5e1b1;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.welcome .container-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center; }
  .welcome .container-content__para {
    font-family: "Poiret One";
    font-size: 20px;
    width: 60%; }

.welcome .container-images {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; }
  .welcome .container-images__image {
    width: 30%;
    border: 7px #e5e1b1 double; }

@media only screen and (max-width: 795px) {
  .welcome .container-content__para {
    width: 90%;
    text-align: justify; }
  .welcome .container-images__center {
    width: 90%; }
  .welcome .container-images__left, .welcome .container-images__right {
    display: none; } }

/* Presentation section */
/* ================= */
.presentation {
  background-color: #dfe4d1;
  display: flex;
  flex-direction: column;
  gap: 8rem; }

.presentation .container {
  display: flex;
  align-items: center;
  justify-content: space-around; }
  .presentation .container__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    gap: 1rem;
    font-family: "Poiret One";
    font-size: 20px; }
    .presentation .container__text h2 {
      text-align: center;
      font-family: "Great Vibes";
      font-size: 40px; }
  .presentation .container__img {
    max-width: 25rem;
    width: 40%;
    border: 7px #000a0f double; }

@media only screen and (max-width: 795px) {
  .presentation {
    gap: 5rem; }
  .presentation .container {
    flex-direction: column;
    gap: 2rem;
    width: 100%; }
    .presentation .container__img {
      order: 2;
      width: 80%; }
    .presentation .container__text {
      width: 100%; }
    .presentation .container p {
      text-align: justify; }
    .presentation .container h2 {
      margin-bottom: 20px;
      width: 100%; } }

/* Galerie Section */
/* ================= */
.galery {
  position: relative;
  background-color: #000a0f; }

@media only screen and (max-width: 795px) {
  .galery {
    padding: 0.5rem 0.5rem 5rem 0.5rem; }
    .galery h1 {
      margin-top: 40px; } }

.galery .container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 28% 40% 28%;
  justify-content: center;
  align-items: center;
  gap: 1.7rem; }
  .galery .container img {
    width: 100%;
    border: 7px #e5e1b1 double; }

@media only screen and (max-width: 795px) {
  .galery .container {
    grid-template-columns: 47% 47%;
    gap: 1rem; } }

/* Reviews section */
/* ================= */
.avis {
  background-color: #dfe4d1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem; }
  .avis h1 {
    color: #000a0f; }
  .avis h2 {
    font-family: "Great Vibes";
    font-size: 35px; }
  .avis p {
    font-family: "Poiret One"; }

.avis .container {
  display: flex;
  flex-direction: column;
  width: 75%;
  gap: 1rem; }
  .avis .container p {
    text-align: justify; }

@media only screen and (max-width: 795px) {
  .avis .container {
    justify-content: center;
    align-items: center;
    width: 100%; }
    .avis .container h2 {
      font-size: 25px;
      width: 80%;
      text-wrap: wrap; } }

.avis .container-right {
  margin-left: 20%;
  text-align: right; }

.avis .container-left {
  margin-left: 5%; }

@media only screen and (max-width: 795px) {
  .avis .container-right {
    margin-left: auto;
    margin-right: auto;
    text-align: left; }
  .avis .container-left {
    margin-left: auto;
    margin-right: auto; } }

.container-tripadvisor {
  font-family: "Poiret One";
  width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto; }
  .container-tripadvisor img {
    width: 75px;
    margin-bottom: 1rem; }

@media only screen and (max-width: 795px) {
  .container-tripadvisor {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .container-tripadvisor img {
      width: 100px; } }

/* Footer section */
/* ================= */
.footer {
  background-color: #000a0f;
  color: #e5e1b1;
  text-align: center;
  padding: 1rem 2rem 1rem 2rem; }

@media only screen and (max-width: 795px) {
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center; } }

.footer .infos {
  padding-top: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px; }

@media only screen and (max-width: 795px) {
  .footer .infos {
    flex-direction: column;
    gap: 0.5rem; } }

@media only screen and (max-width: 795px) {
  .footer .logo {
    order: 3; } }

.footer .pratique {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-left: 2px #e5e1b1 double;
  border-right: 2px #e5e1b1 double;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #e5e1b1; }
  .footer .pratique__txt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: "Roboto";
    font-size: 0.8rem; }

@media only screen and (max-width: 795px) {
  .footer .pratique {
    border: none;
    order: 1; }
    .footer .pratique__txt {
      margin-bottom: 30px; } }

@media only screen and (max-width: 795px) {
  .footer .social-media {
    order: 2; } }

.credits {
  color: #e5e1b1;
  font-size: 12px;
  font-family: "Poiret One";
  order: 4; }

.modal-title {
  font-size: 2rem;
  color: #000a0f; }
  
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-size: 60% 60%;     /* l’icône prend moins de place dans le cercle */
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);  /* fond noir transparent */
  border-radius: 50%;           /* ← arrondi parfait */
  filter: none !important;      /* évite l'inversion de couleur Bootstrap */
  transition: background-color 0.3s ease;
}
 
