@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&display=swap');
:root {
  --bg: #656363;      /* page background */
  --text: #222;        /* default text */
  --muted: #f8f2f2;
  --brand: #1383f3;    /* accent */
  --dark: #1f1f1f;     /* header/footer bg */
  --card: #ffffff;     /* section background */
  --headerText: #ffffff;
  --hero-overlay: rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:var(--bg);        /* base background color */
  line-height: 1.5;
}

/* Header */
header {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      #111111,
      #504f4f 12px,
      #242323 12px,
      #0e0d0d 24px
    ),
    var(--dark);
  color: var(--headerText);
  padding: 20px;
  text-align: center;
  position: relative; /* for hamburger positioning */
}

/* When header is scrolled */
header.scrolled {
  background: #111;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hamburger button */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11; /* above nav + overlay */
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate into “X” */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav */
.nav {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 300ms ease,
    opacity 250ms ease,
    transform 250ms ease;
  background: #1f1f1f;
  padding: 0 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 10; /* above overlay */
}

.nav.show {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  padding: 12px 16px;
}

.nav ul {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 0;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover { text-decoration: underline; }

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.nav.show + .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop breakpoint: keep hamburger + collapsible nav */
@media (min-width: 900px) {
  .hamburger {
    display: inline-flex; /* stay visible on desktop */
  }
  .nav {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    background: #1f1f1f;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 0 16px;
  }
  .nav.show {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 16px;
  }
  .nav ul {
    display: grid;
    gap: 10px;
    margin: 0; padding: 0;
  }
}

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 10px; top: 10px; background:#fff; color:#000;
  padding:8px 12px; border-radius: 8px;
}

/* Layout */
main { max-width: 900px; margin: 0 auto; padding: 24px; }
section {
  background: var(--card);
  color: var(--text);
  padding: 24px; margin: 16px 0;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.btn:hover { filter: brightness(.95); }

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--card);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  text-align: center;
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card h3 {
  margin-top: 0;
  color: var(--dark);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 20px;
  text-align: center;
}
.gallery h2 {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}
.gallery img,
.gallery video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Footer */
.hours p { margin: 6px 0; }
footer {
  text-align: center;
  padding: 18px;
  background: var(--dark);
  color: var(--headerText);
  margin-top: 24px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url('photos/IMG_2601.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 48px 18px;
}
.hero__content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 10px 0;
}
.hero__content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0 0 16px 0;
  opacity: .95;
}
.hero__cta {
  background: linear-gradient(135deg, var(--brand), #0a66c2);
  font-size: 1.1rem;
  padding: 14px 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  transition: transform .2s ease, filter .2s ease;
}
.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ===== Hero slider layers ===== */
.hero { position: relative; overflow: hidden; }
.hero__content { position: relative; z-index: 2; }

/* gradient overlay above images, below text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--hero-overlay), var(--hero-overlay));
  z-index: 1;
}

/* slides container behind overlay */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }

/* dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3; /* above overlay & slides */
}
.hero-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .8;
  cursor: pointer;
}
.hero-dots .dot.active,
.hero-dots .dot:hover { background: #fff; opacity: 1; }


/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  background: transparent;
  padding: 0;
  margin: 16px 0;
}
.highlight {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  display: grid;
  gap: 8px;
}
.highlight .tag {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  width: fit-content;
}
.highlight h3 {
  margin: 4px 0 0 0;
  font-size: 1.1rem;
}
.highlight p {
  margin: 4px 0 0 0;
  font-size: .98rem;
  color: #444;
}

/* Trust */
.trust {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  color: #080808;
}
.trust small { opacity: .8; }

/* Testimonials About */
.testimonials {
  margin-top: 32px;
}
.testimonials blockquote {
  background: var(--card);
  border-left: 4px solid var(--dark);
  padding: 12px 16px;
  margin: 12px 0;
  border-radius: 8px;
  font-style: italic;
}
.testimonials cite {
  display: block;
  margin-top: 6px;
  font-size: .9rem;
  color: #555;
}

/* --- Hero slider: support both dashed and underscored class names --- */
.hero { position: relative; overflow: hidden; }
.hero__content, .hero_content { position: relative; z-index: 2; }

/* gradient overlay above images, below text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--hero-overlay), var(--hero-overlay));
  z-index: 1;
}

/* slides container behind overlay */
.hero-slider, .hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* individual slides */
.hero-slide, .hero_slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active, .hero_slide.active { opacity: 1; }

/* dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .8;
  cursor: pointer;
}
.hero-dots .dot.active,
.hero-dots .dot:hover { background: #fff; opacity: 1; }

.map-section {
  margin-top: 40px;
  padding: 24px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  text-align: center;
}
.map-section h2 {
  margin-bottom: 16px;
}
