* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

header {
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
}
header a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2.375rem;
  font-family:
    "Luckiest Guy" "Knewave",
    system-ui;
  font-weight: 600;
  font-style: normal;
  padding: 1.25rem;
  color: #cf1b1b;
  text-shadow: 1px 1px 2px rgb(0, 0, 1);
}

header nav ul {
  display: flex;
  align-items: center;
}
header nav ul a {
  font-family: "Knewave", system-ui;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.header-list {
  list-style: none;
  padding-left: 1.25rem;
  text-decoration: none;
}
/*________________________________________________SECTION Content_______________________________________________________________________*/

#travel-swizerland {
  background-image: url(images/background/2swiz.jpg);
  height: 44.063rem;
  background-size: cover;
  background-position: center;
  /*(centering div)
  display: flex;
  justify-content: center;
  align-items: center;*/
}

#travel-content {
  background: rgba(98, 56, 56, 0.2);
  box-shadow: 0 0.5rem 2rem 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  max-width: 37.5rem;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 3.125rem 0;
  /*position: relative;
  text-align: center;
  top: 15.625rem;
  margin: 0 auto;
  padding: 3.125rem 0;*/
}

#travel-content h1 {
  font-size: 3.125rem;
  font-family: "Bungee Tint", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.625rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px whitesmoke;
}

#travel-content p {
  color: #fff;
  text-transform: capitalize;
  font-size: 0.938rem;
  text-shadow: 1px 1px 2px #cf1b1b;
}

#travel-content a {
  text-decoration: none;
  color: #fff;
  background-color: #cf1b1b;
  padding: 0.938rem 1.563rem;
  border-radius: 0.625rem;
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1.563rem;
  font-family: "Big Shoulders Inline", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px red;
  box-shadow: 1px 1px 2px black;
}
/*______________highlight-section_______________________________________________________________________________________________________*/

#highlights-container {
  background: url(/images/background/6swiz.jpg);
  object-fit: cover;
  background-size: cover;
  background-position: top;
  margin-bottom: 0.063rem;
}

#highlights-container h1 {
  text-align: center;
  font-family:
    "Luckiest Guy" "Knewave",
    system-ui;
  text-transform: uppercase;
  font-size: 7.5rem;
  color: #cf1b1b;
  letter-spacing: 0.313rem;
  margin-bottom: 2.5rem;
}

#destination img {
  height: 12.5rem;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border-radius: 0.625rem;
  box-shadow: 1px 1px 2px black;
}
#destination {
  width: 30%;
}

#destinations {
  display: flex;
  margin: 2rem auto;
  justify-content: space-around;
  width: 95%;
  max-width: 1200px;
  align-items: flex-start;
  list-style: none;
  flex-wrap: wrap; 
  gap: 20px;
}

#destinations p {
  text-align: center;
  color: #fff;
  font-family: "Knewave", system-ui;
  letter-spacing: 0.125rem;
}

#destinations strong {
  display: block;
  text-align: center;
  font-family:
    "Luckiest Guy" "Knewave",
    system-ui;
  font-size: large;
  color: #fff;
  background-color: #cf1b1b;
  letter-spacing: 0.313rem;
}
/*____________________________________footer-section____________________________________________________________________________________*/

footer {
  background: #cf1b1b;
  padding: 0.625rem 0;
}

footer li {
  height: 6.25rem;
  width: 6.25rem;
  margin-left: 3.125rem;
}
footer img {
  height: 100%;
  width: 100%;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
/* 
  RESPONSIVE DESIGN 
*/

/* For Tablets (Screens smaller than 1024px) */
@media (max-width: 1024px) {
  #highlights-container h1 {
    font-size: 5rem; 
  }

  #destinations {
    width: 95%; 
  }
}

/* For Mobile Phones (Screens smaller than 768px) */
@media (max-width: 768px) {
  
  header {
    flex-direction: column; 
    padding: 1rem;
    position: relative; 
  }

  header a {
    font-size: 1.8rem; 
    padding: 0.5rem;
  }

  header nav ul {
    margin-top: 10px;
  }

  header nav ul a {
    font-size: 1.2rem;
  }

  /* Hero Section adjustments */
  #travel-swizerland {
    height: 30rem; 
  }

  #travel-content {
    width: 90%; 
    padding: 2rem 1rem;
  }

  #travel-content h1 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }

  /* Highlights Section adjustments */
  #highlights-container h1 {
    font-size: 3rem;
  }

  #destinations {
    flex-direction: column; 
    gap: 2rem;
  }

  #destination {
    width: 100%; 
    max-width: 400px; 
  }

  /* Footer adjustments */
  footer li {
    height: 4rem;
    width: 4rem;
    margin: 0 1rem; 
  }
}
