:root {
  --pink: #ff2fb0;
  --pink-light: #ff8adf;
  --amber: #ffb347;
  --black: #0c0a0f;
  --black-2: #141119;
  --black-3: #1c1723;
  --white: #fdf7fb;
  --muted: #c9bfd1;
  --radius: 14px;
  --shadow-glow: 0 0 18px rgba(255, 47, 176, 0.55), 0 0 40px rgba(255, 47, 176, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: 0.03em; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: var(--black);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(255,47,176,0.85), 0 0 55px rgba(255,47,176,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(253, 247, 251, 0.4);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

.btn-call { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 10, 15, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 47, 176, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo { height: 48px; width: auto; }

.main-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1662452883375-9226ea22c765?fm=jpg&q=80&w=2400&auto=format&fit=crop');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,15,0.55) 0%, rgba(12,10,15,0.75) 55%, rgba(12,10,15,0.97) 100%),
    linear-gradient(120deg, rgba(255,47,176,0.28), rgba(12,10,15,0.15) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(480px, 80vw);
  filter: drop-shadow(0 0 25px rgba(255, 47, 176, 0.65)) drop-shadow(0 0 55px rgba(255, 47, 176, 0.35));
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  max-width: 40ch;
  margin: 0.5rem 0 2rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-address {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--pink);
  font-size: 1.4rem;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Strip */
.strip {
  background: var(--pink);
  color: var(--black);
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0.9rem 1.5rem;
}
.strip-item span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* Sections generic */
section { padding: 5.5rem 1.5rem; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-head h2, .about-text h2, .hours-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

/* About */
.about-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about-text p { color: var(--muted); margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 0.5rem; }

/* Menu */
.menu { background: var(--black-2); }
.menu-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  background: var(--black-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,47,176,0.12);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); border-color: rgba(255,47,176,0.5); }
.menu-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.menu-card h3 { padding: 1.2rem 1.2rem 0.3rem; font-size: 1.5rem; color: var(--pink-light); }
.menu-card p { padding: 0 1.2rem 1.4rem; color: var(--muted); font-size: 0.95rem; }
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
}
.menu-note a { color: var(--pink); font-weight: 700; }

/* Gallery */
.gallery-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { height: 260px; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* Hours */
.hours { background: var(--black-2); }
.hours-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.hours-table { width: 100%; margin: 1.5rem 0; border-collapse: collapse; }
.hours-table td { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--pink-light); }
.hours-details { margin-bottom: 1.75rem; color: var(--muted); }
.hours-details strong { color: var(--white); }
.hours-details a { color: var(--pink); font-weight: 700; }
.hours-details p { margin-bottom: 1rem; }
.hours-map { border-radius: var(--radius); overflow: hidden; min-height: 320px; box-shadow: var(--shadow-glow); }
.hours-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* Contact */
.contact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,47,176,0.18), transparent 60%),
    var(--black);
}
.contact h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.contact p { color: var(--muted); margin-bottom: 2rem; }
.social-links { margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; }
.social-links a { color: var(--muted); font-weight: 600; transition: color 0.2s ease; }
.social-links a:hover { color: var(--pink); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,47,176,0.15);
}
.footer-logo { height: 40px; margin: 0 auto 1rem; opacity: 0.9; }
.site-footer p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-copy { font-size: 0.8rem; opacity: 0.7; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .hours-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-2);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 320px; border-bottom: 1px solid rgba(255,47,176,0.15); }
  .main-nav a { padding: 1rem; width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
}

@media (max-width: 480px) {
  .hero-cta, .strip-inner { flex-direction: column; align-items: center; }
  .strip-item { padding: 0.3rem 0; }
}
