/* Basic Reset & Global Styles */
:root {
  --primary-color: #0056b3; /* A shade of blue, but not indigo */
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-gray: #e9ecef;
  --dark-gray: #6c757d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff; /* White background as per v0 default */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem 0;
}

section {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

section:nth-of-type(even) {
  background-color: var(--light-gray);
}

h1,
h2,
h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

.text-center {
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background-color: #004085;
  text-decoration: none;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.image-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.image-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-item h3 {
  margin: 1rem 0.5rem;
  font-size: 1.2rem;
  color: var(--text-color);
}

.nearby-areas ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 1.5rem;
}

.nearby-areas li {
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #004085;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  text-align: center;
}

.contact-info-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info-list li strong {
  color: var(--primary-color);
}

.booking-steps {
  margin-top: 2rem;
}

.booking-steps ol {
  list-style: decimal;
  padding-left: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-steps li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  margin-top: auto; /* Pushes footer to the bottom */
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}

.footer-nav li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-contact-info p {
  margin: 0.5rem 0;
  color: var(--light-gray);
}

.footer-contact-info a {
  color: var(--light-gray);
}

.footer-contact-info a:hover {
  color: var(--primary-color);
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
    margin: 0.5rem 0;
  }

  .nav-menu li a {
    padding: 10px 0;
    display: block;
  }

  .header .container {
    flex-wrap: nowrap;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
