/* ============================================================
   HUNGRY BOYS ON TOUR — Custom Styles
   Brand Palette: Mint/Cyan #5CFFC8, Pink #FF69B4, Dark #1a1a1a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Inter:wght@400;600;700;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --mint: #5CFFC8;
  --pink: #FF69B4;
  --pink-dark: #e04a9a;
  --cyan: #00E5FF;
  --dark: #1a1a1a;
  --darker: #111111;
  --gray: #2a2a2a;
  --light: #f0f0f0;
  --font-brand: 'Permanent Marker', cursive;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Base Reset & Smooth Scroll ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mint), var(--pink));
  border-radius: 4px;
}

/* ---------- Typography Helpers ---------- */
.font-brand { font-family: var(--font-brand); }
.text-mint { color: var(--mint); }
.text-pink { color: var(--pink); }
.text-gradient {
  background: linear-gradient(135deg, var(--mint), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Graffiti Splatter Decorations ---------- */
.splatter {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.splatter-pink {
  background: radial-gradient(ellipse, var(--pink) 0%, transparent 70%);
}
.splatter-mint {
  background: radial-gradient(ellipse, var(--mint) 0%, transparent 70%);
}

/* Paint drips */
.drip {
  position: absolute;
  width: 4px;
  border-radius: 0 0 4px 4px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}
.drip-pink { background: linear-gradient(180deg, var(--pink), transparent); }
.drip-mint { background: linear-gradient(180deg, var(--mint), transparent); }

/* ---------- Noise / Texture Overlay ---------- */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-logo {
  flex-shrink: 0;
  order: 2;
}
.nav-logo img {
  height: 72px;
}
.nav-left {
  order: 1;
  justify-content: flex-end;
}
.nav-right {
  order: 3;
  justify-content: flex-start;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex: 1;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--pink));
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--mint); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn-cta::after { display: none; }
.nav-links .btn-cta:hover { color: #fff; }

/* CTA Button */
.btn-cta {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px rgba(255, 105, 180, 0.6);
}

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: transparent;
  color: var(--mint);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--mint);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--mint);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(92, 255, 200, 0.4);
}

.btn-filled-mint {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--mint);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-filled-mint:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px rgba(92, 255, 200, 0.5);
}

.btn-filled-pink {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-filled-pink:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px rgba(255, 105, 180, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
  order: 4;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--pink);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--pink);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  pointer-events: all;
}
.mobile-menu a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-brand);
  font-size: 2rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--mint); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/image_0.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(17,17,17,0.4) 0%,
    rgba(17,17,17,0.7) 50%,
    rgba(17,17,17,0.95) 100%
  );
}
.hero-composite {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(92, 255, 200, 0.06) 0%,
    transparent 40%,
    rgba(255, 105, 180, 0.06) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.hero-logo {
  width: clamp(220px, 40vw, 420px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(92, 255, 200, 0.3))
          drop-shadow(0 0 60px rgba(255, 105, 180, 0.2));
}
.hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(240,240,240,0.8);
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Section Common ---------- */
.section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

/* ---------- Menu Category Badges ---------- */
.badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 5;
  line-height: 1.2;
  padding: 1rem;
}
.badge-mint {
  border: 3px solid var(--mint);
  color: var(--mint);
  box-shadow: 0 0 20px rgba(92, 255, 200, 0.25),
              inset 0 0 20px rgba(92, 255, 200, 0.08);
}
.badge-pink {
  border: 3px solid var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.25),
              inset 0 0 20px rgba(255, 105, 180, 0.08);
}
.badge-cyan {
  border: 3px solid var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25),
              inset 0 0 20px rgba(0, 229, 255, 0.08);
}

/* ---------- Food Card ---------- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.food-card {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.food-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.food-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.food-card:hover .food-card-img {
  transform: scale(1.08);
}
.food-card-img-wrap {
  overflow: hidden;
  position: relative;
}
/* Graffiti frame accent */
.food-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(92, 255, 200, 0.2);
  border-radius: 4px;
  pointer-events: none;
  transition: border-color 0.3s;
}
.food-card:hover .food-card-img-wrap::after {
  border-color: rgba(255, 105, 180, 0.5);
}
.food-card-body {
  padding: 1.2rem;
}
.food-card-name {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--mint);
}
.food-card-desc {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.6);
  line-height: 1.5;
}

/* ---------- Award Cards ---------- */
.award-card {
  background: var(--gray);
  border: 1px solid rgba(92, 255, 200, 0.12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92, 255, 200, 0.15);
}
.award-icon {
  font-size: 2.2rem;
  color: var(--mint);
  margin-bottom: 0.8rem;
}

/* ---------- Influencer Tags ---------- */
.influencer-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.25);
  border-radius: 50px;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
a.influencer-tag:hover {
  background: rgba(255, 105, 180, 0.2);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

/* ---------- Book Feature Pills ---------- */
.book-feature {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: rgba(92, 255, 200, 0.06);
  border: 1px solid rgba(92, 255, 200, 0.15);
  border-radius: 50px;
  color: var(--light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Truck Grid (Tour + Booking) ---------- */
.truck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.truck-col-left {
  padding-right: 1rem;
}
.truck-col-right {
  padding-left: 1rem;
}

/* ---------- Booking Form ---------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(240,240,240,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(92, 255, 200, 0.15);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,240,240,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(92, 255, 200, 0.1);
}
.form-group select option {
  background: var(--dark);
  color: var(--light);
}

/* ---------- Tour / Schedule ---------- */
.tour-wall {
  max-width: none;
  margin: 0;
  position: relative;
  z-index: 5;
}
.tour-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-left: 3px solid var(--mint);
  margin-bottom: 0;
}
.tour-item:last-child {
  border-left-color: var(--pink);
}
.tour-item::before {
  content: '';
  position: absolute;
  left: -9px; top: 1.8rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--dark);
  box-shadow: 0 0 10px rgba(92, 255, 200, 0.5);
}
.tour-item:last-child::before {
  background: var(--pink);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}
.tour-date {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 0.3rem;
}
.tour-location {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.tour-time {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.5);
}

/* ---------- Delivery Section ---------- */
.delivery-section {
  background: linear-gradient(135deg, rgba(92,255,200,0.05), rgba(255,105,180,0.05));
}
.delivery-platforms {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.delivery-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 2px solid;
}
.delivery-btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.delivery-btn.deliveroo {
  background: #00ccbc15;
  border-color: #00CCBC;
  color: #00CCBC;
}
.delivery-btn.deliveroo:hover {
  box-shadow: 0 8px 30px rgba(0, 204, 188, 0.3);
}
.delivery-btn.justeat {
  background: #f5801515;
  border-color: #F58015;
  color: #F58015;
}
.delivery-btn.justeat:hover {
  box-shadow: 0 8px 30px rgba(245, 128, 21, 0.3);
}
.delivery-btn.ubereats {
  background: #06c16715;
  border-color: #06C167;
  color: #06C167;
}
.delivery-btn.ubereats:hover {
  box-shadow: 0 8px 30px rgba(6, 193, 103, 0.3);
}
.delivery-btn i {
  font-size: 1.4rem;
}

/* Delivery Row (inside truck section) */
.delivery-row {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(92, 255, 200, 0.1);
}

/* Image-based delivery buttons */
.delivery-img-btn {
  display: block;
  width: 200px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.delivery-img-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.delivery-img-btn:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--mint);
  box-shadow: 0 8px 30px rgba(92, 255, 200, 0.2);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--darker);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-socials a {
  color: var(--light);
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}
.footer-socials a:hover {
  color: var(--mint);
  transform: scale(1.2);
}
.footer p {
  font-size: 0.8rem;
  color: rgba(240,240,240,0.4);
}
.footer a { color: var(--pink); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { justify-content: space-between; }
  .nav-logo { order: 1; }
  .nav-logo img { height: 50px; }
  .hamburger { display: flex; order: 2; }
  .hero { padding-top: 5rem; }
  .food-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .badge { width: 110px; height: 110px; font-size: 0.85rem; }
  .delivery-btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .section { padding: 3.5rem 1rem; }
  .tour-item { padding-left: 2rem; }
  .truck-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .truck-col-left { padding-right: 0; }
  .truck-col-right { padding-left: 0; }
  .delivery-img-btn { width: 150px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  background: rgba(92, 255, 200, 0.08);
  color: var(--mint);
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  position: relative;
  z-index: 5;
}
.back-to-top:hover {
  background: var(--mint);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(92, 255, 200, 0.4);
  transform: translateY(-3px);
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(92, 255, 200, 0.15);
  padding: 1.2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ---------- Privacy Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: var(--gray);
  border: 1px solid rgba(92, 255, 200, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  color: var(--light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
  z-index: 5;
}
.modal-close:hover {
  color: var(--pink);
}

/* ---------- Utility / Animation Helpers ---------- */
.will-animate {
  opacity: 0;
  transform: translateY(30px);
}
