:root {
  --bg-deep: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-2: #181824;
  --pink: #ff3db8;
  --pink-dim: #c42d8f;
  --cyan: #2de8ff;
  --cyan-dim: #1bb8d4;
  --wood: #c9a77a;
  --text: #f4f4f8;
  --text-muted: #a8a8b8;
  --shadow-pink: 6px 6px 0 #ff3db8;
  --shadow-cyan: 6px 6px 0 #2de8ff;
  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 61, 184, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 40%, rgba(45, 232, 255, 0.08), transparent 45%);
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 61, 184, 0.45), 0 0 28px rgba(45, 232, 255, 0.2);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 61, 184, 0.5);
}

.brand-text span {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(45, 232, 255, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 2px solid var(--pink);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cyan);
  text-decoration: none;
  text-shadow: 0 0 12px rgba(45, 232, 255, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translate(-2px, -2px);
}

.btn-pink {
  color: var(--bg-deep);
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--shadow-cyan);
}

.btn-pink:hover {
  box-shadow: 8px 8px 0 var(--cyan);
}

.btn-outline {
  color: var(--cyan);
  background: transparent;
  border-color: var(--cyan);
  box-shadow: 4px 4px 0 rgba(45, 232, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(45, 232, 255, 0.1);
  box-shadow: var(--shadow-pink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-deep) center / cover no-repeat;
  background-image: linear-gradient(120deg, rgba(10, 10, 15, 0.75) 0%, rgba(10, 10, 15, 0.35) 45%, rgba(10, 10, 15, 0.85) 100%), url("assets/hero-truck.png");
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow:
    0 0 40px rgba(255, 61, 184, 0.55),
    3px 3px 0 var(--pink-dim);
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 0 1.5rem;
}

.hero .tagline strong {
  color: var(--cyan);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-label {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-deep);
  background: var(--cyan);
  box-shadow: 4px 4px 0 var(--pink);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.section h2 .pink {
  color: var(--pink);
  text-shadow: 0 0 28px rgba(255, 61, 184, 0.45);
}

.section h2 .cyan {
  color: var(--cyan);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 2px solid rgba(255, 61, 184, 0.35);
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: 8px 8px 0 rgba(45, 232, 255, 0.2);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--cyan);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-block {
  margin-bottom: 3rem;
}

.menu-block h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.menu-block .sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.menu-block .promo {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bg-deep);
  background: var(--text);
  margin-bottom: 1rem;
  box-shadow: 4px 4px 0 var(--pink);
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item {
  background: var(--bg-card-2);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  border: 2px solid rgba(45, 232, 255, 0.35);
  box-shadow: 6px 6px 0 rgba(255, 61, 184, 0.25);
}

.menu-item header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.menu-item h4 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-item .veg {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--pink);
  vertical-align: super;
}

.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.menu-item .price::after {
  content: " LKR";
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.2em;
  letter-spacing: 0.04em;
}

.menu-item .desc {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.menu-item .extra {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--cyan);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-left: 3px solid var(--wood);
  padding-left: 1rem;
  margin-top: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery a,
.gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 61, 184, 0.3);
  box-shadow: 4px 4px 0 rgba(45, 232, 255, 0.15);
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery a:hover img {
  transform: scale(1.05);
}

.map-section .map-card {
  background: var(--bg-card);
  border: 2px solid var(--cyan);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}

.map-section iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 61, 184, 0.25);
  text-align: center;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer .copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(18, 18, 26, 0.98);
    border: 2px solid var(--pink);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    display: none;
  }

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

  .nav-links a {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }
}
