/* ========================================
   FRITOS CHICKEN - STYLES
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1a0a0a;
  --bg-card: rgba(30, 10, 10, 0.8);

  --text-primary: #ffffff;
  --text-secondary: #f3f4f6;
  --text-muted: #9ca3af;

  --accent-red: #ef4444;
  --accent-red-dark: #b91c1c;
  --accent-yellow: #f59e0b;
  --accent-yellow-hover: #d97706;

  --border-color: rgba(239, 68, 68, 0.2);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-yellow {
  color: var(--accent-yellow);
}

.text-red {
  color: var(--accent-red);
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}

h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-yellow);
}

h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--text-primary);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-hover));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
  transform: translateY(-3px);
  color: var(--text-primary);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--accent-yellow);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-large {
  padding: 20px 48px;
  font-size: 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a:not(.nav-order-btn):hover {
  color: var(--accent-yellow);
}

.nav-links li a:not(.nav-order-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

.nav-links li a:not(.nav-order-btn):hover::after,
.nav-links li a.nav-active::after {
  width: 100%;
}

.nav-links li a.nav-active {
  color: var(--accent-yellow);
}

.nav-order-btn {
  padding: 10px 24px !important;
  font-size: 15px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1a0000 0%, #3b0a0a 50%, #1a0a00 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Fire Particles */
.fire-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.fire-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.6), transparent);
  top: 20%;
  left: 10%;
  animation: fireFloat 6s ease-in-out infinite;
}

.fire-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent);
  top: 60%;
  right: 15%;
  animation: fireFloat 8s ease-in-out infinite reverse;
}

.fire-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.5), transparent);
  bottom: 10%;
  left: 30%;
  animation: fireFloat 7s ease-in-out infinite 1s;
}

.fire-4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4), transparent);
  top: 10%;
  right: 25%;
  animation: fireFloat 9s ease-in-out infinite 2s;
}

.fire-5 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent);
  bottom: 30%;
  right: 40%;
  animation: fireFloat 5s ease-in-out infinite 0.5s;
}

.fire-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes fireFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.1); opacity: 0.6; }
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-emoji {
  font-size: 120px;
  margin-bottom: 24px;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 30px rgba(245, 158, 11, 0.5));
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-title {
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(239, 68, 68, 0.3);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(245, 158, 11, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-address {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== DIRECT ORDER BANNER ===== */
.direct-order-banner {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.direct-order-banner p {
  color: #f3f4f6;
  font-size: 18px;
  margin-bottom: 16px;
}

.direct-order-banner strong {
  color: #f59e0b;
}

.direct-order-banner .btn-primary {
  padding: 12px 32px;
  font-size: 16px;
}

.doordash-note {
  font-size: 14px !important;
  color: #9ca3af !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.doordash-note a {
  color: #f59e0b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.doordash-note a:hover {
  color: #ffffff;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== MENU HIGHLIGHTS SECTION ===== */
.menu-highlights-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.highlight-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  color: var(--accent-yellow);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.price-badge {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.highlight-card .btn-primary {
  padding: 12px 32px;
  font-size: 16px;
  width: 100%;
  max-width: 200px;
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.menu-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.menu-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.menu-card h3 {
  color: var(--accent-yellow);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.menu-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.flavor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-badge {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--accent-red);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.flavor-badge:hover {
  background: var(--accent-red);
  color: var(--text-primary);
  transform: scale(1.05);
}

.sides-card {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HALAL BANNER SECTION ===== */
.halal-banner-section {
  background: linear-gradient(135deg, var(--accent-red-dark), #7f1d1d);
  padding: 60px 20px;
  text-align: center;
}

.halal-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.halal-icon {
  font-size: 64px;
  margin-bottom: 8px;
}

.halal-banner-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.halal-banner-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  line-height: 1.6;
}

/* ===== HALAL SECTION ===== */
.halal-section {
  background: linear-gradient(135deg, #14532d, #166534);
  padding: 80px 20px;
  text-align: center;
}

.halal-badge {
  border: 3px solid var(--accent-yellow);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  animation: glowPulse 3s ease-in-out infinite;
}

.halal-check {
  font-size: 48px;
}

.halal-section h2 {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.halal-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.about-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ORDER SECTION ===== */
.order-section {
  background: linear-gradient(135deg, var(--accent-red-dark), #7f1d1d);
  padding: 100px 20px;
  text-align: center;
}

.order-section h2 {
  font-size: 56px;
  margin-bottom: 16px;
}

.order-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.order-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.order-section .btn-primary {
  background: linear-gradient(135deg, #1a0a0a, #0f172a);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.order-section .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-hover));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.order-section .btn-secondary {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.order-section .btn-secondary:hover {
  background: var(--text-primary);
  color: var(--accent-red-dark);
}

.order-address {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item p a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-item p a:hover {
  color: var(--accent-yellow);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 400px;
  background: var(--bg-card);
}

.contact-map iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(239, 68, 68, 0.3);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo a {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.footer-logo a:hover {
  color: var(--accent-yellow);
}

.footer-tagline {
  color: var(--accent-yellow);
  font-weight: 600;
  margin-top: 8px;
  font-size: 16px;
}

.footer-links h4,
.footer-order h4 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links ul li,
.footer-order ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-order ul li a {
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-order ul li a:hover {
  color: var(--accent-yellow);
}

.footer-address {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-section h2 {
    font-size: 44px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  body {
    font-size: 16px;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 18px;
  }

  .nav-order-btn {
    text-align: center;
    width: 100%;
  }

  .nav-container {
    height: 70px;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
    min-height: 100svh;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  /* Menu Highlights */
  .menu-highlights-section {
    padding: 60px 0;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 28px 20px;
  }

  .highlight-icon {
    font-size: 56px;
  }

  .price-badge {
    font-size: 20px;
    padding: 10px 20px;
  }

  /* Halal Banner */
  .halal-banner-section {
    padding: 50px 20px;
  }

  .halal-banner-section h2 {
    font-size: 32px;
  }

  .halal-banner-section p {
    font-size: 16px;
  }

  .halal-icon {
    font-size: 56px;
  }

  /* Menu */
  .menu-section {
    padding: 60px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .menu-card {
    padding: 24px 20px;
  }

  /* About */
  .about-section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-card {
    padding: 24px 20px;
  }

  /* Order */
  .order-section {
    padding: 60px 20px;
  }

  .order-section h2 {
    font-size: 36px;
  }

  .order-buttons {
    flex-direction: column;
    align-items: center;
  }

  .order-buttons .btn-primary,
  .order-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 17px;
  }

  /* Contact */
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  /* Halal */
  .halal-section {
    padding: 60px 20px;
  }

  .halal-section h2 {
    font-size: 28px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .flavor-badges {
    gap: 8px;
  }

  .flavor-badge {
    padding: 6px 12px;
    font-size: 13px;
  }
}
