:root {
  --journal-bg: #f8f5f0;
  --journal-text: #333;
  --journal-heading: #000;
  --journal-border: #e0e0e0;
  --journal-accent: var(--color-orange);
  --color-white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Bannière */
.main-container {
  background-color: white;
}
.destinations-banner {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.32) 50%,
      rgba(0, 0, 0, 0.64) 100%
    ),
    url(../images/page_destination/zakariae-daoui-giJBD5g9FWI-unsplash.jpg);
  box-shadow: 0px 15px 44px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
}

.destinations-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  font-family: "Nunito";
}

.destinations-content h1 {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-size: 70px;
  line-height: 80px;
  /* identical to box height, or 114% */
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-underline-offset: 25px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ededed;
  text-shadow: 0px 0px 40px #000000;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.flight-path-decorator {
  position: relative;
  top: -130px;
  margin-top: 0px;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.image-flight {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  margin-bottom: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.1);
}

/* Section Cetys style */

.section-cetys {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px;
  max-width: 1280px;
  margin: 200px auto;
}

.card {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card.reverse {
  flex-direction: row-reverse;
}

.card-image {
  flex: 1 1 45%;
  width: auto;
  height: auto;
}

.card-image img {
  width: 501px;
  height: 433px;
  border-radius: 20px;
  object-fit: cover;
}

.card-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #fff;
}

.card-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #223f7a;
  text-transform: capitalize;
}

.card-content hr {
  border: 2px dashed #223f7a;
  width: 100%;
}

.card-content p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #232323;
}

.btn {
  display: inline-block;
  background: #d55e1e;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
  height: 53px;
  width: 168px;
}

.btn:hover {
  background: #b84e17;
}

.ville-container {
  display: flex;
  flex-direction: column;
  margin-top: -1px;
}

.destinations-wrapper {
  position: relative;
  left: 0;
  width: 100%;
  margin-top: -250px;
  margin-bottom: 0;
  z-index: 10;
  background-color: var(--color-white);
  padding-top: 3rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.ville {
  position: relative;
  width: 100%;
  /* min-height: 100vh;
  background-image: url("../images/page d'accueil/back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
  margin-top: -1px;
  padding-top: 150px;
  border-top: 0;
}

.ville::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 196, 158, 0.951);
  z-index: 1;
}

.ville .container {
  position: relative;
  z-index: 2;
}
/* Tablet */
@media (max-width: 1200px) {
  .section-cetys {
    padding: 30px;
  }
}

/* Medium screens */
@media (max-width: 768px) {
  .destinations-banner {
    height: 400px;
  }
  .destinations-content h1 {
    font-size: 2.2rem;
  }
  .flight-path-decorator {
  top: -70px;
  margin-bottom: -50px;
}
  .card {
    flex-direction: column;
    text-align: center;
  }
  .card.reverse {
    flex-direction: column;
  }
  .card-content {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .destinations-banner {
    height: 400px;
  }
  .flight-path-decorator {
    top: -60px;
    margin-bottom: -50px;
  }
  .section-cetys {
    padding: 20px;
  }
  .card-content h2 {
    font-size: 24px;
  }
  .btn {
    width: 100%;
  }
}
