@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
  --primary: #D32F2F;
  --primary-dark: #B71C1C;
  --secondary: #FBC02D;
  --secondary-dark: #F9A825;
  --dark: #191919;
  --dark-80: rgba(25,25,25,0.8);
  --white: #FFFFFF;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --text: #333333;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.2);
  --radius: 10px;
  --font-title: 'Bungee', cursive;
  --font-text: 'Roboto Condensed', sans-serif;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-text); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-title); line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; font-family: var(--font-title); }
p { font-size: 1.1rem; line-height: 1.7; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}
.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-desktop a {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-desktop a:hover { border-color: var(--secondary); color: var(--secondary); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--secondary) !important; color: var(--dark) !important; }
.burger-btn {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}
.burger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.8rem;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--secondary); background: rgba(251,192,45,0.1); }
.mobile-nav .mobile-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  margin-top: 1rem;
  width: auto;
  padding: 1rem 2.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,25,25,0.65);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-logo {
  width: 120px;
  margin: 0 auto 1.5rem;
}
.hero h1 {
  color: var(--primary);
  text-shadow: var(--secondary) 2px 2px 0px;
  margin-bottom: 1rem;
}
.hero-subtitle {
  color: var(--secondary);
  font-family: var(--font-text);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.halal-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 70px;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-text);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  background: var(--secondary);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding: 0 3rem;
  background: transparent;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}
.section-alt {
  background: var(--gray-light);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-dark .section-header h2 {
  color: var(--secondary);
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.75);
}

/* ===== MENU / PIZZAS ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
  min-width: 80px;
}
.tab-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pizza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pizza-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 4px solid var(--primary);
}
.pizza-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.pizza-card.hidden { display: none; }
.pizza-info { flex: 1; }
.pizza-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.pizza-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.pizza-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.pizza-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}
.pizza-price-item {
  font-size: 0.85rem;
  color: #888;
}
.pizza-price-item span {
  font-weight: 700;
  color: var(--primary);
}
.pizza-price-item small {
  font-size: 0.75rem;
  color: #aaa;
}
.promo-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1rem;
}
.promo-banner span { margin: 0 1.5rem; }

/* ===== LIVRAISON ===== */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.delivery-info h2 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.delivery-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(251,192,45,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.feature-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.partners-section {
  margin-top: 2rem;
}
.partners-section h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.partner-logo {
  background: var(--white);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.partner-logo:hover { transform: scale(1.05); }
.partner-logo img { height: 2.5rem; width: auto; object-fit: contain; }
.delivery-zones {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.zones-title {
  font-family: var(--font-title);
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.zone-tag {
  background: rgba(211,47,47,0.2);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}
.payment-section {
  margin-top: 2rem;
}
.payment-section h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.payment-logo {
  background: var(--white);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}
.payment-logo img { height: 1.8rem; width: auto; object-fit: contain; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(211,47,47,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h3 {
  font-size: 0.9rem;
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 0.2rem;
}
.contact-detail p, .contact-detail a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.contact-detail a:hover { color: var(--primary); }
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
}
.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--gray-light);
  padding: 1.25rem;
  border-radius: var(--radius);
}
.hours-row {
  display: contents;
}
.hours-day {
  font-weight: 700;
  font-size: 0.95rem;
}
.hours-time {
  font-size: 0.95rem;
  color: var(--primary);
  text-align: right;
}
.hours-closed {
  color: #aaa;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-brand img {
  height: 3.5rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h3 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
}
.footer-social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover { color: var(--secondary); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .pizza-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .burger-btn { display: none; }

  .hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
  .halal-badge { width: 90px; }

  .pizza-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pizza-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .section { padding: 6rem 2rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
