/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Homepage Hero Background */
.homepage .hero {
  background-image: url('https://images.unsplash.com/photo-1576485375217-d6a95e34d043?q=80&w=1287&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
}

.homepage .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.homepage .hero h1,
.homepage .hero p,
.homepage .hero .hero-buttons {
  position: relative;
  z-index: 2;
}

/* Header styles */
header {
  background-color: #004d40;
  color: white;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

/* Navigation styles */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  background-color: #333;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

nav ul li a:hover {
  background-color: #555;
}

/* Hero section (default styles for other pages) */
.hero {
  background-image: url('https://images.unsplash.com/photo-1572183243358-317ac84d10c0?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 6em 2em;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero h1, .hero p, .hero-buttons {
  position: relative;
  z-index: 2;
}

.hero-buttons .btn {
  background-color: #00796b;
  color: white;
  padding: 0.8em 1.5em;
  margin: 1em 0.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero-buttons .btn:hover {
  background-color: #004d40;
}

/* Highlights section */
.highlights {
  padding: 2em;
  text-align: center;
}

.highlights h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

.destination-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
}

.destination-list li {
  background: #e0f2f1;
  padding: 1em;
  border-radius: 8px;
}

.destination-list a {
  text-decoration: none;
  color: #004d40;
  font-weight: bold;
}

.destination-list a:hover {
  text-decoration: underline;
}

main {
  max-width: 1200px;
  margin: auto;
}

/* Social bar */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  padding: 1.5em;
  background: #004d40;
}

.social-bar a {
  color: white;
  font-size: 1.5em;
}

.social-bar a:hover {
  color: #80cbc4;
}

/* Footer */
footer {
  background-color: #004d40;
  color: #fff;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  margin-top: 2em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
    margin-top: 1em;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero-buttons .btn {
    display: block;
    margin: 1em auto;
  }
}