/* High Street Caffe — static rebuild, v2 "vintage rock poster" pass
   Palette pulled from the real interior (deep purple/gold) and the old
   Vudu Lounge signage (hot pink accent, black). Fonts: Bungee for big
   poster-style headlines, Oswald for condensed labels, Barlow for body. */

:root {
  --ink: #0d0a0f;
  --purple: #3b0a45;
  --purple-deep: #240428;
  --gold: #d4af37;
  --pink: #e6157a;
  --cream: #f5ecd9;
  --max-width: 1100px;

  --font-display: 'Bungee', 'Arial Black', sans-serif;
  --font-label: 'Oswald', sans-serif;
  --font-body: 'Barlow', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  position: relative;
}

/* subtle grain overlay for texture, whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

h3 {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

a { color: var(--pink); }

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  border: 2px solid var(--gold);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--gold);
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-label);
  letter-spacing: 0.5px;
}
.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar__phone a { color: var(--gold); }
.topbar__social a {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
  color: #fff;
  transition: color 0.15s ease;
}
.topbar__social a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,15,0.55) 0%, rgba(36,4,40,0.75) 60%, rgba(13,10,15,0.92) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  color: #fff;
  text-align: center;
}
.hero__logo { max-width: 150px; margin-bottom: 0.75rem; }
.hero__badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transform: rotate(-3deg);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.4rem 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h3 {
  color: var(--gold);
  font-weight: 400;
  margin: 0 0 1rem;
}

/* Reserve section */
.reserve, .lunch, .about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.reserve h2, .about h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  position: relative;
  padding-bottom: 0.75rem;
}
.reserve h2::after, .about h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--gold);
}
.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.reserve__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.05);
  transition: transform 0.25s ease;
}
.reserve__image:hover img { transform: scale(1.03); }
.reserve__card, .reserve__map {
  background: var(--purple-deep);
  color: var(--cream);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 6px;
  padding: 1.5rem;
}
.reserve__card h3 { color: var(--gold); margin-top: 0; }
.reserve__card a { color: var(--gold); }
.reserve__map iframe { border-radius: 6px; }

/* Lunch callout */
.lunch {
  max-width: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  background:
    linear-gradient(rgba(36,4,40,0.85), rgba(13,10,15,0.9)),
    url("assets/hero-crawfish.jpg") center/cover no-repeat;
}
.lunch h2 {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.lunch p { max-width: 640px; margin: 0 auto; }
.lunch .btn { background: var(--pink); color: #fff; border-color: var(--pink); }
.lunch .btn:hover { background: transparent; color: var(--pink); }

/* About */
.about { background: var(--ink); color: var(--cream); max-width: 100%; }
.about > h2, .about > .about__grid { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.about h2 { color: #fff; }
.about__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
.about__photo {
  width: 100%;
  border: 6px solid #fff;
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}
.about__text p { color: rgba(245,236,217,0.9); }
.about strong { color: var(--gold); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(212,175,55,0.35);
}
.site-footer img { max-width: 100px; margin-bottom: 0.5rem; }
.site-footer p { margin: 0.25rem 0; font-size: 0.85rem; }
.site-footer .credit a { color: var(--gold); }

/* Responsive */
@media (max-width: 720px) {
  .reserve__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 260px; margin: 0 auto; display: block; }
  .hero h1 { font-size: 2rem; }
}
