/* Reset default browser margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0077b6;
  color: white;
  padding: 15px 40px;
}

header h1 {
  font-size: 24px;
  letter-spacing: 2px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ---------- HERO IMAGE ---------- */
.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ---------- STATS SECTION ---------- */
.stats {
  display: flex;
  justify-content: space-around;
  background: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
}

.stats div h3 {
  font-size: 28px;
  color: #0077b6;
}

.stats div p {
  margin-top: 5px;
  font-size: 16px;
}

/* ---------- DESTINATIONS ---------- */
#destinations {
  padding: 50px 20px;
  text-align: center;
}

#destinations h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #0077b6;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  text-align: center;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------- ADVENTURES ---------- */
#adventures {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

#adventures h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #0077b6;
}

.adventure-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.adventure-images img {
  width: 32%;
  min-width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

footer h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

footer p {
  font-size: 14px;
}
