/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2f8f44;
  padding: 10px 20px;
  width: 100%;
}
header h1 {
  color: white;
  font-size: 28px;
  margin: 0;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  margin-right: 150px;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
header nav ul li a:hover {
  text-decoration: underline;
}

/* Book Now Button */
.book-now-top {
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 1000;
}
.book-now-top a {
  background-color: #ffcc00;
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease;
}
.book-now-top a:hover {
  background-color: #ff9900;
}

/* Footer */
footer {
  background-color: #1e7e34;
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
}

/* Section Styling */
section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }
  header h1 {
    font-size: 22px;
  }
  header nav ul {
    margin-right: 0;
    justify-content: center;
  }
  /* Push the Book Now button further down on mobile so it doesn't overlap the header */
  .book-now-top {
    top: 100px;
    right: 15px;
  }
  .book-now-top a {
    padding: 10px 16px;
    font-size: 14px;
  }
}


/* Ensure hero images in slideshow are responsive */
.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
}

/* Two-column contact layout */
.contact-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.contact-left {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.contact-left h2 {
  color: #2f8f44;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  margin: 10px 0;
}

.contact-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields input {
  flex: 1;
}

.contact-right input,
.contact-right textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-right button {
  background-color: #2f8f44;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-right button:hover {
  background-color: #276f3c;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-two-column {
    flex-direction: column;
  }

  .name-fields {
    flex-direction: column;
  }
}
