/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --black:   #0d0d0d;
  --white:   #ffffff;
  --red:     #e30613;
  --gray:    #d4d4d4;
  --text:    #111111;
  /* Bahnschrift is a Windows variable font; condensed bold weight via font-stretch */
  --head:    'Bahnschrift', 'Arial Narrow', Arial, sans-serif;
  --body:    'Barlow', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--black);
  height: 52px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white); /* makes currentColor on SVG white */
}

.logo-img {
  height: 49px;
  width: auto;
}

/* Diagonal racing stripes next to logo */
.logo-stripes {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 26px;
}

.logo-stripe {
  display: block;
  width: 6px;
  height: 22px;
  transform: skewX(-14deg);
}

.logo-stripe--red  { background: var(--red); }
.logo-stripe--blue { background: #1a6fc4; }

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 80vh;
  background-color: #000;
  background-image: url('images/herobackground.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 52px; /* clear fixed nav */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 15%,
    rgba(0, 0, 0, 0.85) 32%,
    rgba(0, 0, 0, 0.45) 52%,
    rgba(0, 0, 0, 0.1) 72%,
    transparent 90%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2rem 3.5rem 5%;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.6rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

/* Red inline highlight boxes */
.hero-highlight {
  display: inline-block;
  font-family: var(--head);
  font-weight: 700;
  font-stretch: condensed;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: #fff;
  background: var(--red);
  padding: 0 10px;
  /* tight left edge */
  align-self: flex-start;
}

.hero-sub {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.hero-selector {
  max-width: 480px;
}

/* ── SHARED SECTION HEADING ── */
.section-heading {
  font-family: var(--head);
  font-weight: 700;
  font-stretch: condensed;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--text);
  margin-bottom: 2rem;
}

.section-heading--light { color: #fff; }

/* ── RESERVE YOUR SPOT ── */
.reserve {
  background: var(--white);
  padding: 3.5rem 2rem 3rem;
}

.reserve-browse {
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

/* ── SHARED PHOTO PLACEHOLDER ── */
.photo-box {
  background: var(--gray);
  aspect-ratio: 4 / 3;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--white);
  padding: 3.5rem 2rem 3rem;
  border-top: 1px solid #e8e8e8;
}

.hiw-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* Photo on left for flipped rows */
.hiw-row--flip .hiw-photo { order: -1; }

.hiw-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hiw-label {
  font-family: var(--head);
  font-weight: 700;
  font-stretch: condensed;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 1rem;
}

/* ── BOOK NOW ── */
.booknow {
  background: var(--red);
  padding: 2rem 1rem;
  text-align: center;
}

.booknow-link {
  font-family: var(--head);
  font-weight: 700;
  font-stretch: condensed;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: opacity 0.15s;
}

.booknow-link:hover { opacity: 0.88; }

/* ── FIND MY ORDER ── */
.find {
  background: var(--black);
  padding: 3.5rem 2rem 4rem;
}

.find-widget {
  max-width: 700px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.footer-heading {
  font-family: var(--head);
  font-weight: 700;
  font-stretch: condensed;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-link {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 299;
  }

  .nav-links.open { display: flex; }

  .hero-content { padding-left: 1.5rem; }

.hiw-row,
  .hiw-row--flip {
    grid-template-columns: 1fr;
  }

  .hiw-row--flip .hiw-photo { order: 0; }
}
