/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

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

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
}

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

.site-title {
  font-size: 26px;
  font-weight: bold;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FFD700;
}
/* Active page link */
.nav-menu a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.attractions-info {
  text-align: center;
  margin-bottom: 30px;
}

.attractions-info h2 {
  font-size: 28px;
  color: #2f7865;
  margin-bottom: 10px;
}

.attractions-info p {
  font-size: 16px;
  color: #245c4f;
}

/* Gallery Section */
.attractions-gallery h2 {
  text-align: center;
  font-size: 26px;
  color: #2f7865;
  margin-bottom: 30px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Attraction Card */
.attraction-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(47, 120, 101, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(47, 120, 101, 0.35);
}

.attraction-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #2f7865;
  padding: 6px;
  background-color: #fff;
}

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

.attraction-item p {
  font-size: 15px;
  color: #245c4f;
  margin: 12px 0;
  line-height: 1.5;
}

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

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

/* Footer */
footer {
  background-color: #074131;
  color: #fff;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-contact {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.back-to-top {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive  */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

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

  .logo {
    height: 50px;
  }
}

  /* Hide the checkbox */
#menu-toggle {
  display: none;
}

/* Burger icon styling */
.burger {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  border: 2px solid #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Show burger on small screens */
@media (max-width: 768px) {
  .burger {
    display: block;
  }
/* hide menu initially */
  .nav-menu ul {
    display: none; 
    flex-direction: column;
    background-color: #2f7865;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }

  /* When checkbox is checked, show menu */
  #menu-toggle:checked + .burger + ul {
    display: flex;
  }
}

