/* Base styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #2f7865;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #074131;
  color: white;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  margin-right: 15px;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FFD700;
  text-decoration: underline;
}
/* Active page link */
.nav-menu a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
/* hidden on desktop */
.burger {
  display: none; 
  font-size: 24px;
  cursor: pointer;
  color: white;
  padding: 10px 14px;
  border: 2px solid white;
  border-radius: 6px;
  background-color: #2f7865;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.burger:hover {
  background-color: #245c4f;
  transform: scale(1.05);
}

#menu-toggle {
  display: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.hero h2 {
  font-size: 32px;
  color: #2f7865;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  font-style: italic;
  color: #245c4f;
}

/* Image gallery */
.image-container {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.attraction-item {
  flex: 1 1 30%;
  max-width: 300px;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(31, 109, 187, 0.4);
  text-align: center;
}

.attraction-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #2f7865;
}

.attraction-item h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #2f7865;
}

.attraction-item p {
  font-size: 14px;
  color: #2f7865;
  margin: 10px 0;
}

.attraction-item a {
  display: inline-block;
  margin-top: 8px;
  color: #2f7865;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.attraction-item a:hover {
  color: #FFD700;
  border-color: #FFD700;
}

/* Footer */
footer {
  background-color: #074131;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.footer-contact p {
  margin: 6px 0;
}

.back-to-top {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.back-to-top:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Tablet */
@media screen and (min-width:480px) and (max-width:768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .image-row {
    flex-wrap: wrap;
  }

  .attraction-item {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media screen and (max-width:480px) {
  .image-row {
    flex-direction: column;
  }

  .attraction-item {
    flex: 1 1 100%;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }
}
/* visible on mobile/tablet */
@media screen and (max-width:768px) {
  .burger {
    display: block; 
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #2f7865;
    padding: 10px;
    border-radius: 8px;
  }

  #menu-toggle:checked + .burger + ul {
    display: flex;
  }
}
