:root {
  --deep-green: #0b3b2e;
  --olive: #6b8a58;
  --gold: #c69b3b;
  --cream: #fff6ea;
  --brown: #603a2e;
  --accent: var(--gold);
  --max-width: 1200px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  line-height: 1.6;
  color: var(--deep-green);
  background: var(--cream);
  overflow-x: hidden; /* prevent horizontal overflow */
}
.container {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: linear-gradient(
    180deg,
    rgba(255, 246, 234, 0.95),
    rgba(255, 246, 234, 0.9)
  );
  backdrop-filter: saturate(120%) blur(4px);
  border-bottom: 1px solid rgba(96, 58, 46, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img {
  height: 56px;
}
.logo.small img {
  height: 44px;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.25s;
}
.nav a:hover {
  background: rgba(198, 155, 59, 0.12);
  transform: translateY(-2px);
  color: var(--brown);
}
.nav a:focus {
  outline: 2px solid rgba(198, 155, 59, 0.12);
  outline-offset: 3px;
}
.top-contacts {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-link {
  background: linear-gradient(90deg, var(--gold), #d6b85a);
  color: var(--traditional-green);
  padding: 8px 12px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon-link i {
  font-size: 16px;
}
.icon-link .link-text {
  display: inline-block;
}
.icon-link:hover {
  transform: translateY(-2px);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
}

/* Hero */
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 48px 0;
  background-color: var(--cream);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="1200" viewBox="0 0 1200 1200"><defs><pattern id="p" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M0 100 C30 60 70 60 100 100 C130 140 170 140 200 100" stroke="%230b3b2e" stroke-opacity="0.08" stroke-width="2" fill="none"/></pattern></defs><rect width="1200" height="1200" fill="url(%23p)"/><g fill="%23603a2e" fill-opacity="0.06"><circle cx="920" cy="200" r="380"/></g></svg>');
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 246, 234, 0.6),
    rgba(255, 246, 234, 0.4)
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 20px 12px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title {
  font-family: "Great Vibes", serif;
  font-size: 56px;
  margin: 0;
  color: var(--deep-green);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
}
.hero-sub {
  font-family: "Lora", serif;
  font-size: 20px;
  margin: 8px 0;
  color: var(--brown);
}
.hero-location {
  color: var(--olive);
  font-weight: 700;
}
.hero-desc {
  color: #4b3c36;
  margin-top: 8px;
  font-size: 16px;
}
.hero-ctas {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-features {
  list-style: none;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding: 0;
  flex-wrap: wrap;
}
.hero-features li {
  background: linear-gradient(
    90deg,
    rgba(11, 59, 46, 0.04),
    rgba(198, 155, 59, 0.03)
  );
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--deep-green);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-features li:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: var(--deep-green);
  color: var(--cream);
  box-shadow: 0 10px 20px rgba(11, 59, 46, 0.08);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(11, 59, 46, 0.12);
}
.btn-outline {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid rgba(11, 59, 46, 0.08);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-3px);
}

.email{
    display:flex;
    align-items: center;
    gap:0.8rem;
}

/* Sections */
section {
  padding: 48px 0;
}
h2 {
  font-family: "Lora", serif;
  color: var(--brown);
  font-size: 28px;
  margin: 0 0 8px;
}
.section-sub {
  color: var(--olive);
  margin-bottom: 18px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(96, 58, 46, 0.08);
  max-height: 520px;
  object-fit: cover;
}
.about-content .lead {
  font-size: 18px;
  color: #3b3b3b;
  margin-bottom: 10px;
}
.about-stats {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.about-stats div {
  background: rgba(198, 155, 59, 0.06);
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
}
.about-stats strong {
  display: block;
  font-size: 20px;
  color: var(--deep-green);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.contact-list li {
  margin-bottom: 8px;
}
.social {
  display: inline-block;
  margin-right: 10px;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
}


.contact-phone {
  display: flex;
  align-items: center;
  gap:0.8rem;
}

.phone-num {
  display: flex;
  gap: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.service-card {
  background: linear-gradient(
    180deg,
    rgba(255, 246, 234, 1),
    rgba(255, 246, 234, 0.7)
  );
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(96, 58, 46, 0.06);
  text-align: left;
  transition: transform 0.25s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 46px rgba(96, 58, 46, 0.12);
}
.service-icon {
  font-size: 34px;
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 6px 0 8px;
  color: var(--brown);
}
.service-card p {
  color: #4b3c36;
}
.service-card::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 155, 59, 0.14),
    transparent
  );
  margin-top: 12px;
}

/* Gallery */
.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-top: 18px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s;
}
.card {
  min-width: 210px;
  background: var(--cream);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(96, 58, 46, 0.07);
  overflow: hidden;
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-cap {
  padding: 12px;
  font-weight: 700;
  color: var(--deep-green);
  background: linear-gradient(
    180deg,
    rgba(255, 246, 234, 1),
    rgba(255, 246, 234, 0.95)
  );
  font-size: 14px;
}
.card:hover .card-image {
  transform: scale(1.04);
  transition: transform 0.35s ease;
}
.carousel-nav {
  background: var(--deep-green);
  color: var(--cream);
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
}
.carousel-nav:hover {
  transform: translateY(-3px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}
.booking-card {
  background: linear-gradient(180deg, #fffaf1, #fff4e6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(96, 58, 46, 0.06);
}
.booking-card h2 {
  margin-top: 0;
}
.booking-note {
  color: #4b3c36;
}
.booking-ctas {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.mini-pricing ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.mini-pricing li {
  padding: 6px 0;
  color: #4b3c36;
}
.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
}

/* Contact quick block styles */
.contact-quick {
  margin-top: 16px;
}
.contact-encourage {
  margin: 0 0 8px 0;
  color: #42332b;
}
.contact-items {
  list-style: none;
  padding: 0;
  margin: 6px 0 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #3b3b3b;
}
.contact-item i {
  color: var(--deep-green);
  background: rgba(11, 59, 46, 0.06);
  padding: 8px;
  border-radius: 8px;
  min-width: 36px;
  text-align: center;
}
.social-inline {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), #d6b85a);
  color: var(--cream);
  text-decoration: none;
}
.social-btn i {
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f6efe6, #efe6d8);
  padding: 28px 0;
  border-top: 1px solid rgba(96, 58, 46, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-grid p {
  color: #4b3c36;
}
.footer-links a {
  color: var(--deep-green);
  text-decoration: none;
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(11, 59, 46, 0.06);
    color: var(--deep-green);
    margin-right: 8px;
    text-decoration: none;
  }
  .footer-socials a:hover {
    background: linear-gradient(90deg, var(--gold), #d6b85a);
    color: #fff;
  }
}
.footer-links a:hover {
  text-decoration: underline;
  color: var(--brown);
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--deep-green);
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(96, 58, 46, 0.04);
  margin-top: 12px;
  color: #5b4a42;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: var(--deep-green);
  text-decoration: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 59, 46, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.lightbox[aria-hidden="false"] {
  display: flex;
}
.lb-image {
  max-width: 92%;
  max-height: 86%;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s;
}
.lb-image.zoomed {
  transform: scale(1.06);
}
.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  color: var(--cream);
  font-size: 34px;
  padding: 6px 10px;
  border-radius: 6px;
}
.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-track {
    gap: 12px;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav ul {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 74px;
    background: linear-gradient(180deg, rgba(255, 246, 234, 0.98), #fff);
    padding: 12px 20px;
    border-radius: 12px;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(96, 58, 46, 0.06);
  }
  .nav.open ul li a {
    display: block;
    padding: 12px;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 44px;
  }
  .header-inner {
    gap: 8px;
  }
  .logo img {
    height: 48px;
  }
  .top-contacts {
    display: none;
  }
  .carousel {
    gap: 8px;
  }
  .card {
    min-width: 150px;
  }
  /* tighter mobile spacing */
  .container {
    width: calc(100% - 28px);
  }
  .hero {
    padding: 28px 0;
  }
  .hero-content {
    padding: 12px 8px;
  }
  .booking-card {
    padding: 16px;
  }
  .contact-quick .contact-item span {
    font-size: 15px;
  }
}

/* === Responsive overflow & link fixes (overrides) === */
html,
body {
  width: 100%;
  overflow-x: hidden; /* strong guard against horizontal scroll */
}

/* Make images behave responsively everywhere (including gallery cards) */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent long words/emails/phone numbers from creating horizontal scroll */
.hero-content,
.about-content,
.booking-card,
.contact-info,
.footer-grid,
.contact-quick,
.card-cap {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Lightbox: limit image to viewport minus comfortable gutters */
.lb-image {
  max-width: calc(100% - 48px) !important;
  max-height: calc(100% - 96px) !important;
  width: auto !important;
  height: auto !important;
}

/* Ensure the lightbox controls don't push layout on very small screens */
.lb-prev,
.lb-next,
.lb-close {
  max-width: 56px;
  padding: 6px 8px;
}

/* Footer: stack columns on smaller screens to avoid overflow */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Normalize phone / mailto / social link appearance (remove default blue underline) */
a[href^="tel:"],
a[href^="mailto:"],
.contact-list a,
.contact-items a,
.booking-ctas a,
.footer-links a,
.social,
.icon-link {
  text-decoration: none;
}

.booking-ctas-1{
  color:#d6b85a;
}
.booking-ctas-2{
  color:#0b3b2e;
}
.booking-ctas-2:hover{
  background-color:#af9212;
}

/* Hover state keeps clear visual affordance */
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
.contact-list a:hover,
.contact-items a:hover,
.booking-ctas a:hover,
.footer-links a:hover,
.social:hover,
.icon-link:hover {
  color: #805804 ;
}

/* Ensure container respects viewport and does not cause side scroll */
.container {
  box-sizing: border-box;
}

/* Small mobile adjustments to avoid any accidental overflow */
@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
  }
  .card-image {
    height: 150px;
  }
  .carousel-track {
    gap: 8px;
  }
  .nav.open ul {
    left: 8px;
    right: 8px;
  }
}

/* End overrides */
