/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-size: contain; /* Or use 'contain' if it suits your design better */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-position: center; /* Center the background image */
  min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
}

/* 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 */
  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 */
}

/* Gallery Section */
#gallery {
  padding: 20px;
  border-radius: 10px; /* Optional: Add rounded corners */
}

/* Gallery Heading */
.gallery-heading {
  color: #333; /* Dark text color for visibility */
  margin-bottom: 20px; /* Space below the heading */
}

/* Container for Gallery Items */
.gallery-container {
  display: flex; /* Use flexbox for layout */
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  gap: 5px; /* Minimal gap between images */
  padding: 20px; /* Padding for overall container */
}

/* Individual Gallery Item */
.gallery-item {
  width: 90%; /* Set width to 90% of the container */
  max-width: 500px; /* Optional: Set a maximum width */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Prevent overflow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.2s; /* Animation on hover */
}

.gallery-item:hover {
  transform: scale(1.02); /* Slightly enlarge on hover */
}

.gallery-item img {
  width: 100%; /* Make images responsive */
  height: auto; /* Maintain aspect ratio */
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
  .gallery-item {
      width: 95%; /* Adjust width for smaller screens */
  }
}

/* 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 */
.footer-logo {
  width: 150px; /* Fixed width for logo */
  margin: 0 auto; /* Center the logo in the footer */
  text-align: center; /* Align contents center */
}

.footer-logo img {
  width: 100%; /* Make image responsive to its container */
  height: auto;
  object-fit: contain;
}

/* Footer Contact Section */
.footer-contact {
  width: 35%;
  text-align: center;
}

.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 */
.footer-copyright {
  width: 35%;
  text-align: right;
  margin-bottom: 0;
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }
  .footer-logo {
      width: 100px; /* Smaller width for logo on mobile */
      margin-bottom: 20px;
  }
  .footer-contact, .footer-copyright {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
  }
}
