/* =========================================================
   Eat & Drink – FINAL Stable Styles
   ========================================================= */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.navwrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.logo-knot {
  height: 160px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.phone a {
  display: inline-block;
  padding: 10px 16px;
  background: #2f4f3a;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.25)
  );
  z-index: 1;
}

/* ---------- Hero Content ---------- */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  gap: 14px;

  /* This is the ONLY vertical nudge – stable on all screens */
  transform: translateY(48px);
  padding: 0 16px;
}

.hero-content h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.6);
}

/* ---------- Menu Buttons ---------- */
.hero-menu-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-menu-btn {
  padding: 10px 14px;
  background: #2f4f3a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ---------- Slider Dots ---------- */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.dot.active { background: #fff; }

/* ---------- Intro ---------- */
.intro {
  padding: 64px 20px;
  background: #fff;
}
.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-inner p {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- Contact ---------- */
.contact-strip {
  padding: 56px 20px;
  background: #fff;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.contact-col h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
}
.contact-link {
  color: #2f4f3a;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

/* =========================================================
   RESPONSIVE (THE IMPORTANT BIT)
   ========================================================= */

@media (max-width: 900px) {
  .navwrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone {
    margin-top: 8px;
  }

  .logo-knot {
    height: 130px;
    margin: 0 auto;
  }

  /* Header gets taller – push hero down a bit more */
  .hero-content {
    transform: translateY(84px);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-menu-btn {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/* Only stack buttons on VERY tiny screens */
@media (max-width: 360px) {
  .hero-menu-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-menu-btn {
    width: 100%;
    max-width: 320px;
  }
}