/* Reset default styles */
*{
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  /* line-height: 1.6; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
header {
  position: sticky;
  top: 0;
  background-color: rgba(247, 107, 28, 0.5);
  color: black;
  padding: 20px 0;
  text-align: center;
  z-index: 100; /* Ensures the header appears above other content */
}

header h1 {
  font-size: 36px;
}

nav ul {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  border-radius: 1rem;
  padding: 15px;
  color: black;
  font-weight: bold;
}
nav ul li a:hover {
  background-color: #f76b1c;
}
main {
  margin: 20px auto;
  min-height: 77.8vh;
}
main h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

/* Featured section styles */
.featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.destination {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: zoom-in;
}

.destination img {
  width: 100%;
  height: 300px;
  border-radius: 5px;
}

.destination h3 {
  font-size: 24px;
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem;
  margin: 10px 0;
  visibility: hidden;
}

.destination:hover h3 {
  visibility: visible;
}

/* Footer styles */
footer {
  background-color: rgba(247, 107, 28, 0.5);
  color: black;
  text-align: center;
  padding: 20px;
}
