/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background: #076f03; /* Dark green background */
  color: white; /* White text color */
  padding: 20px 0; /* Padding for spacing */
  text-align: center; /* Center-align text */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}
.logo {
  display: flex;
  justify-content: center; /* Center logo horizontally */
}

.logo {
  width: 150px;
  left: 0;
  object-fit: contain;
}

header h1 {
  font-size: 2.5em; /* Larger font size for the main title */
  margin: 0; /* Remove default margin */
  font-weight: bold; /* Make title bold */
}

header nav {
  margin-top: 10px; /* Space between title and navigation */
}

nav ul {
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 10px 0; /* Margin for spacing */
}

nav ul li {
  display: inline; /* Display items inline */
  margin: 0 15px; /* Space between navigation items */
}

nav ul li a {
  color: white; /* White text for links */
  text-decoration: none; /* Remove underline */
  font-weight: 600; /* Slightly bolder text */
  transition: color 0.3s; /* Smooth transition for hover effect */
}

nav ul li a:hover {
  text-decoration: underline; /* Underline on hover */
  color: #ffcc00; /* Change color on hover */
}

/* Video Container */
.video-container {
  position: absolute; /* Use fixed instead of absolute for full viewport coverage */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full viewport height */
  overflow: hidden; /* Prevent overflow issues */
  z-index: -1; /* Send video behind other content */
}

.video-index {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers the container */
}

#attractions {
  position: relative; /* Ensure the attractions section is positioned above the video */
  padding: 20px;
  color: rgb(0, 0, 0); /* Text color */
  z-index: 1; /* Bring attractions section above video */
}

.attractions-container {
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping to the next line */
  justify-content: center; /* Center cards horizontally */
  gap: 20px; /* Space between cards */
  position: relative; /* Make sure this is positioned relative to the attractions section */
}

.heading {
  color: #fff;
  text-align: center;
}
.heading2 {
  color: #fff;
  text-align: center;
}
/* Attractions Section */
#attractions {
  position: relative; /* Ensure the z-index works */
  padding: 20px;
  color: rgb(0, 0, 0); /* Text color */
  z-index: 1; /* Bring attractions section above video */
}

/* Container for Attraction Cards */
.attractions-container {
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping to the next line */
  justify-content: center; /* Center cards horizontally */
  gap: 20px; /* Space between cards */
}

/* Individual Attraction Cards */
.attraction {
  background: rgba(255, 255, 255, 0.9); /* Semi-transparent white for contrast */
  border-radius: 8px;
  padding: 15px;
  width: 300px; /* Fixed width for attraction cards */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s; /* Animation on hover */
}

.attraction:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.attraction img {
  width: 100%;
  border-radius: 8px;
}

.attraction h3 {
  margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .attractions-container {
      flex-direction: column; /* Stack cards on smaller screens */
      align-items: center; /* Center cards */
  }

  .attraction {
      width: 90%; /* Adjust width for smaller screens */
  }
}

/* About Section */
#about {
  padding: 20px;
  background: white;
  text-align: center;
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.image-container .image {
  width: 30%;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #0c4c1c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 100%; /* Set to 100% of the container */
  max-width: 150px; /* Constrain max width for larger screens */
  height: auto;
  object-fit: contain;
}

.footer-contact {
  width: 35%;
  text-align: left; /* Align left for larger screens */
}

.footer-contact h4 {
  margin-bottom: 10px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact li i {
  margin-right: 10px;
  font-style: normal;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copyright {
  width: 35%;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    width: 100%;
    max-width: 150px; /* Constrain logo size on smaller screens */
    margin-bottom: 20px;
    text-align: center;
  }
  .footer-contact, .footer-copyright {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

h2 {
  color: #0c4c1c;
}
