/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
    height: 50px; /* Adjust as needed - maintain aspect ratio */
    width: 100px; /* Maintain aspect ratio */
    display: block; /* Removes any extra space below the image */
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('https://images.pexels.com/photos/831088/pexels-photo-831088.jpeg') no-repeat center center/cover;
  height: 80vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn {
  background-color: #2e7d32; 
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #1b5e20;
}

/* About Section */
.about {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

/* Tours Section */
.tours {
  padding: 2rem;
  background-color: #f0f0f0;
  text-align: center;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tour-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none; /* Remove underline */
  color: #333;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  background-color: #f0f7f0;
}

/* Contact Section */
.contact {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

#formStatus {
  margin-top: 1rem;
  color: green;
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive Design */
