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

:root {
  --red: #D72B2B;
  --red-dk: #A81E1E;
  --gold: #ffb700;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --gray: #888888;
  --light: #F5F5F0;
  --white: #FFFFFF;
  --green: #35990A;
}

html {
  scroll-behavior: smooth;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span{
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--red);
}
.nav-links li:last-child:hover a {
  color: #000;
}

.nav-order {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background .2s;
}

.nav-order:hover{
  background: var(--green);
}
.nav-order a:hover{
  color:#000;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  background: #0a0a0a;
}

/* fullscreen video bg */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* dark + red-tinted overlay on top of video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(10, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(215, 43, 43, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--red);
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-left: 14px;
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(215, 43, 43, 0.3));
}

/* Halal badge */
.halal-badge {
  position: absolute;
  /* top: -20px; */
  right: -10px;
  width: 100px;
  height: 100px;
  /* background: var(--gold); */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.9);
}

.halal-badge span:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.halal-badge span:nth-child(2) {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.halal-badge span:last-child {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 600;
}

/* ── ABOUT ── */
.about {
  background: var(--dark2);
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.about-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-images img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title span {
  color: var(--red);
}

.section-body {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  background: rgba(215, 43, 43, 0.15);
  border: 1px solid rgba(215, 43, 43, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

/* ── ORDER PLATFORMS ── */
.platforms {
  background: var(--dark);
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

.platforms-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.platforms h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.platform-logos a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color .2s, background .2s;
}

.platform-logos a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
}

.platform-logos img {
  height: 28px;
}

.platform-icon {
  font-size: 1.5rem;
}

/* ── CTA STRIP (photo mosaic) ── */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* mosaic of wing photos as CSS grid background layer */
.cta-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  z-index: 0;
}

.cta-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(1.3);
  transition: filter .4s;
}

.cta-mosaic img:hover {
  filter: brightness(0.7) saturate(1.5);
}

/* dark vignette overlay so text pops */
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%); */
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 5%;
}

.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.cta-strip p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform .15s;
}

.btn-white:hover {
  transform: translateY(-2px);
}

/* ── PLATTERS ── */
.platters {
  background: var(--dark3);
  padding: 100px 5%;
}

.platters-header {
  text-align: center;
  margin-bottom: 16px;
}

.platters-header .section-title {
  margin-bottom: 6px;
}

.platters-sub {
  text-align: center;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 52px;
}

.platters-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platter-card {
  background: var(--dark2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .2s, border-color .2s;
}

.platter-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 43, 43, 0.35);
}

.platter-img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  background: #1a1a1a;
}

.platter-info {
  padding: 20px;
}

.platter-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.platter-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.platter-order {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 43, 43, 0.4);
  padding-bottom: 2px;
  transition: color .2s;
}

.platter-order:hover {
  color: #ff5555;
}

/* ── PARTY ── */
.party {
  padding: 100px 5%;
  background: var(--dark2);
  display: flex;
  justify-content: center;
}

.party-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.party img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  filter: brightness(0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.party-text .section-title {
  margin-bottom: 16px;
}

.party-text .section-body {
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(215, 43, 43, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── MAP / CONTACT ── */
.contact {
  background: var(--dark);
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.contact-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 4px;
}


.contact-info h2 span:nth-child(1) {
  color: var(--green);
}

.contact-info .sub {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(215, 43, 43, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.detail-value a {
  color: var(--white);
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.social-btn {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-btn:hover {
  opacity: 0.85;
}

.social-fb {
  background: #1877F2;
  color: #fff;
}

.social-yelp {
  background: #D32323;
  color: #fff;
}

.social-google {
  background: #fff;
  color: #333;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 5%;
  text-align: center;
}

footer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .hero-content,
  .about-inner,
  .party-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    order: -1;
  }

  .platters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 24px 5%;
    gap: 20px;
  }

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

  .nav-order-desk {
    display: none;
  }

  .cta-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .platters-grid {
    grid-template-columns: 1fr;
  }

  .about-images img:first-child {
    height: 180px;
  }

  .hero {
    padding-top: 90px;
  }
}