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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #4fa122; /* warm background */
  color: #222;
}

/* Header */
.header {
  background: #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
}

.logo {
  height: 60px;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav li {
  margin-left: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  color: #f44336; /* red accent */
}

/* Hero Section */
.hero {
  background-color: #feefc3;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero img {
  max-width: 25%;
  height: auto;
}

.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #388e3c; /* green */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #2e7d32;
}

/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #f44336;
}

/* About */
.about {
  background: #feefc3;
  padding: 60px 20px;
  text-align: center;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.left-column,
.center-column,
.right-column {
  background: none;
  padding: 0 10px;
}

.center-column img {
  max-width: 50%;
  height: auto;
}

/* Contact */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact a {
  margin-top: 20px;
  display: inline-block;
}
.book-page .contact {
  background-color: #feefc3 /* Light tan for book page */
}

/* Footer */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-ps {
  font-size: 5px;
  color: #ccc;
}


/* Book Page Styles */
.book-page {
  padding: 60px 20px;
  background-color: #2e7d32;

}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #feefc3;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.booking-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: row; /* Changed from column to row */
  align-items: center; /* Center align items vertically */
  gap: 10px; /* Add some space between label and input */
}

.form-group label {
  font-weight: bold;
  color: #333;
  min-width: 120px; /* Give label a fixed width */
  margin-bottom: 0; /* Remove bottom margin since we're using gap */
}

.form-control {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  flex: 1; /* Make input take remaining space */
}

.form-control:focus {
  outline: none;
  border-color: #388e3c;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.form-control:invalid {
  border-color: #f44336;
}

.error-messages {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  grid-column: 1 / -1; /* Make error messages span full width */
}

.btn-primary {
  background: #388e3c;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  margin-top: 20px;
}

.btn-primary:hover {
  background: #2e7d32;
}

/* Address Widget Styling - Match other form inputs */
.address-widget {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 0; /* Remove extra margin */
}

.address-widget .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.address-widget .form-control:focus {
  outline: none;
  border-color: #388e3c;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

/* Address field labels */
.address-widget label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  display: block;
}

/* Street address takes full width */
.address-widget .street-field {
  grid-column: 1 / -1;
}

/* City, State, ZIP in a row - match form-row width */
.address-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
}

/* Address section - make it fit in form-row */
.address-section {
  margin-bottom: 20px; /* Match other form groups */
}

.address-section > label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* Field labels for address widget */
.field-label {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  display: block;
  font-weight: normal;
}

/* Error styling for address fields */
.address-widget .errorlist {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  list-style: none;
  padding: 0;
}

.address-widget .errorlist li {
  background: #ffebee;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 5px;
}

/* Responsive design for address */
@media (max-width: 768px) {
  .address-row {
    grid-template-columns: 1fr;
  }
  
  .address-widget {
    gap: 10px;
  }
}

/*
Responsive Design
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 20px;
    margin: 20px;
  }
  
  .form-group {
    flex-direction: column; /* Stack vertically on mobile 
    align-items: flex-start;
  }
  
  .form-group label {
    min-width: auto;
    margin-bottom: 8px;
  }
}
*/