/* ========== RESET ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ========== THEME ========== */
:root {
  --teal: rgb(0,121,136);
  --gold: rgb(200,142,63);
  --gold-press: rgb(170,110,40);
  --ink: #1e1e1e;
  --paper: #ffffff;
  --shadow-1: 0 6px 20px rgba(0,0,0,.25);
}

/* ========== BASE ========== */
body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.no-scroll { overflow: hidden; }

/* ========== NAVBAR ========== */
header { position: relative; z-index: 1000; background: none; }
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 1.1rem;
  white-space: nowrap;
  text-shadow: 1px 1px 3px rgba(0,0,0,.6);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: outline .08s ease, outline-offset .08s ease, background .2s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,.6);
}
.nav-links a:hover {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background: rgba(255,255,255,.06);
}
.nav-links .active { text-decoration: underline; }
.booking-button {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  transition: background .2s ease, transform .06s ease;
}
.booking-button:hover { background: var(--gold-press); }
.booking-button:active { transform: translateY(1px); }

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  border: none;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2001; /* keep button above overlay */
}
.hamburger-box { width: 28px; height: 20px; display: inline-block; position: relative; }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  width: 28px; height: 2px;
  background: #fff;
  position: absolute; left: 0;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.hamburger-inner { top: 9px; }
.hamburger-inner::before { top: -8px; }
.hamburger-inner::after { top: 8px; }
.hamburger.is-active .hamburger-inner { transform: rotate(45deg); }
.hamburger.is-active .hamburger-inner::before { top: 0; transform: rotate(90deg); }
.hamburger.is-active .hamburger-inner::after { top: 0; opacity: 0; }

/* ========== HERO ========== */
.hero-background {
  background: url('/imgs/storefront.jpg') top center / cover no-repeat;
  min-height: 50vh; /* thinner hero */
  display: flex;
  flex-direction: column;
}
.hero-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 5vw, 72px) 20px;
  color: #f0f0f0;
}
.hero-content {
  background: none;
  border: none;
  box-shadow: none;
  width: min(780px, 92vw);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}
.hero-title {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  color: teal;
  text-align: center;

    /* White outline */
  -webkit-text-stroke: .75px #fff; 
  
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.hero-content p {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 12px 0 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--paper);
  text-align: center;
  padding: 20px 0;
}
.cta-band .cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 22px;
  border: 2px solid transparent;
  transition: background .2s ease, color .2s ease, transform .06s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--gold);
  color: #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.btn-primary:hover { background: var(--gold-press); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover { background: rgba(200,142,63,.12); }
.btn-secondary:active { transform: translateY(1px); }

/* ========== WHITE SECTION (map, hours, contact) ========== */
.section-white {
  background: var(--paper);
  color: var(--ink);
}
.section-white .container > h2 {
  font-size: 1.8rem;
  margin: 0 0 18px;
  color: var(--teal);
  letter-spacing: .05em;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
/* center headers inside info cards */
.info-card h3 {
  margin-top: 0;
  color: var(--teal);
  font-size: 1.4rem;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}
.info-card a { color: var(--teal); text-decoration: underline; }
/* ===== HERO LOGO (Index page) ===== */
.homepage .hero-content img {
  display: block;
  margin: 0 auto;
  width: 75%;      /* reduce size ~40% */
  max-width: 320px; /* safety for larger screens */
  height: auto;
}

/* ========== FOOTER ========== */
footer {
  background: none;
  color: #666;
  text-align: center;
  padding: 18px 0;
  border-top: none;
}

/* ========== FADE-IN ON SCROLL ========== */
.reveal {
  opacity: 0;
  transition: opacity .7s ease;
  will-change: opacity;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transition: none !important; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px){
  .logo { font-size: 1rem; }
}
/* on desktop, stack Hours and Contact vertically */
@media (min-width: 901px) {
  .info-grid {
    display: flex;
    flex-direction: column; /* stack instead of side-by-side */
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hamburger { display: inline-block; }

  .nav-links {
    position: fixed;   /* FIX: menu overlays whole screen */
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(50vh - 64px);
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 1050;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    transition: background .2s ease, transform .1s ease;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
  }

  /* emphasised BOOK button */
  .nav-links .booking-button {
    background: var(--gold);
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
    margin-top: 10px;
  }
  .nav-links .booking-button:hover {
    background: var(--gold-press);
    transform: translateY(-2px);
  }

  .nav-links[data-state="open"] {
    opacity: 1;
    pointer-events: auto;
  }

  /* stack hours + contact */
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .btn { padding: 10px 18px; }
}
.hero-background--services {
  background: url('/imgs/services.jpg') top center / cover no-repeat;
}

/* Services wrapper */
.services-wrap {
  padding: 40px 0 60px;
}

.services-wrap h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--teal);
  text-align: center;
}

.services-wrap .intro {
  margin: 0 auto 28px;
  max-width: 800px;
  color: #666;
  text-align: center;
}

/* Price grid */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .price-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Individual price item */
.price-item {
  border: 1px solid #eee;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.price-item.feature {
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

/* Name — dots — price */
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.price-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

.price-row .dots {
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #ddd 0 6px,
    transparent 6px 10px
  );
}

.price {
  font-weight: 800;
}

/* Service description */
.desc {
  margin: .35rem 0 0;
  color: #555;
  font-size: .98rem;
}

/* CTA under grid */
.cta-center {
  text-align: center;
  margin-top: 24px;
}
