/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General nav styling */
#mobileNav {
  display:flex;
  justify-content:space-around;
  align-items:center;
  background:#333;
  padding:.75rem 1rem;
  gap:1rem;               /* spacing between items */
  flex-wrap:nowrap;       /* keep items on one row */
  /*overflow-x:hidden;      /* hide overflow unless you want scroll (see below) */
}

/* Links */
#mobileNav > a,
#mobileNav .dropdown > a {
  color: #FFB59F;                /* white text */
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  display: block;
  flex-wrap:nowrap; 
}

#mobileNav > a:hover,
#mobileNav .dropdown > a:hover {
  background-color: rgba(255,255,255,0.15);
  border-radius: 6px;
}

/* Dropdown wrapper */
#mobileNav .dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
#mobileNav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background-color: #333;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  flex-wrap:nowrap; 
}

/* Links inside dropdown */
#mobileNav .dropdown-content a {
  color: #FFB59F;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  flex-wrap:nowrap; 
}

#mobileNav .dropdown-content a:hover {
  background-color: #eee;
}

/* Show dropdown on hover */
#mobileNav .dropdown:hover .dropdown-content {
  display: block;
}


  /* Dropdown container */
  .dropdown {
    position: relative;
  }

  /* Dropdown menu (hidden by default) */
  .dropdown-content {
    display: none;
    flex-direction: column;
    position: relative; /* keep stacked under parent for mobile */
    background: #444;
    margin-left: 20px; /* indent sub-links */
    flex-wrap:nowrap; 
    font-size: 1.2rem;
  }

  /* Show submenu when parent is hovered */
  .dropdown:hover .dropdown-content {
    display: flex;
  }

  /* Optional: style sub-links */
  .dropdown-content a {
    padding: 8px 15px;
    color: #ddd;
  }
  .dropdown-content a:hover {
    background: #555;
  }

header {
  background: #333;
  color: #9B82B6;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

header h1 {
  margin: 0;
  padding-bottom: 0.2rem;
  font-size: 2.5rem;
}

.subheader {
  font-size: 1.2rem;
  font-weight: 550;
  /* color: #afafaf; */
  color: #9B82B6;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #FFB59F;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffe9cc;
}

main {
  padding: 20px;
  /* background: #FFB59F; */
  background: var(--panel-bg) !important;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  backdrop-filter: none !important;
}

footer {
  text-align: center;
  padding: 12px;
  background: #333;
  color: #FFB59F;
  font-size: 0.9rem;
  font-weight: 400;
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid #B69CC3;
}

/* your orange content box */
.subscribe-container{
  background: var(--panel-bg) !important;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  /* make sure nothing is fading it */
  opacity: 1 !important;
  backdrop-filter: none !important;
  text-align: center;
  margin-top: 20px;
}

.subscribe-container h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #633c1f;
  font-weight: 700;
}

form input[type="email"],
form button {
  display: block;
  margin-top: 10px;
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  border: 1px solid #B69CC3;
  font-family: 'Montserrat', sans-serif;
}

form input[type="email"] {
  background-color: #fffdf8;
}

form button {
  background-color: #B69CC3;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d9932e;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}


  .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 0;
  box-sizing: border-box;
}


.service-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background-color: #fff;
}

.service-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover; /* Optional if you want crop/fit */
}

.service-card h3 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.book-button {
  display: inline-block;
  padding: 10px 16px;
  background-color: #5e9ca0;
  color: #FFB59F;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-button:hover {
  background-color: #B1E6FF;
}

.footer-nav a {
  margin: 0 10px;
  color: #FFB59F;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.location-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #B69CC3;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.location-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.location-details p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

.map-link {
  color: #5e9ca0;
  text-decoration: underline;
}

.map-link:hover {
  color: #3e7d83;
}

.review-preview-card {
  background-color: #B69CC3;
  padding: rem;
  margin: rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.review-preview-card h2 {
  color: #633c1f;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.review-preview-card blockquote {
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
  color: #4a3c2f;
  border-left: 4px solid #B69CC3;
  padding-left: 1rem;
}

#availability ul {
  list-style: none;
  padding-left: 0;
}

#availability li {
  background: #fdfaf6;
  margin: 0.4rem 0;
  padding: 0.75rem;
  border-left: 4px solid #B69CC3;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

#availability h3 {
  margin-top: 2rem;
  color: #5a3e1c;
  font-size: 1.1rem;
}


/* Tablet & mobile navigation toggle */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #B69CC3;
    border-top: 1px solid #FFB59F;
    padding: 10px 0;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}

/* Mobile: tighten header and reduce stacked space */
@media (max-width: 480px) {
  header {
    padding: 0.5rem 0;
  }

  header h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding-bottom: 0.1rem;
  }

  .subheader {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .menu-toggle {
    margin-top: -5px;
  }
}

html, body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #5e9ca0;
  color: #4a3c2f;
  overflow-x: hidden;
}

a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* colors */
/* page color */
:root{
  --page-bg: #5e9ca0;   /* teal */
  --panel-bg: #f4a58a;  /* orange */
}
html, body{
  background: var(--page-bg);
}

/* make the page wrapper transparent (this removes the big white slab) */
main::before,
main::after {               /* some themes add white via pseudo-elements */
  background: transparent !important;
  box-shadow: none !important;
}




