:root {
  --chicking-red: #D6001C;
  --chicking-dark: #08060d;
  --bg-color: #fdfaf5;
  --font-stack: "Inter", "Outfit", "Helvetica Neue", sans-serif;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  background-color: var(--bg-color);
  color: var(--chicking-dark);
}

/* Header Utilities */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.top-util {
  background: transparent;
  color: white;
  display: flex;
  justify-content: flex-end;
  padding: 16px 4%;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
}

.get-app-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--chicking-red);
  height: 80px;
  padding: 0 32px;
  margin: 0 4%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  font-size: 1.2rem;
}

.logo-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

.brand-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-btn {
  background: transparent;
  color: white;
  height: 80px;
  padding: 0 40px;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  font-size: 1.2rem;
  cursor: pointer;
}

/* App Root / Layout */
#app-root {
  display: flex;
  flex-direction: column;
}

/* Hero */
.hero {
  width: 100%;
  height: 600px;
  background: #111;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promo Grid */
.promo-grid {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: 60px;
  scroll-padding-left: 60px;
  box-sizing: border-box;
}

.promo-grid::-webkit-scrollbar {
  display: none;
}


.promo-tile {
  flex: 0 0 32%;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 16/9;
  scroll-snap-align: start;
}


.tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tile-image:hover {
  transform: scale(1.05);
}

/* CTA Duo */
.cta-duo {
  display: flex;
  width: 100%;
}

.cta-duo-card {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta-duo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.cta-duo-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 40px 40px 60px;
  max-width: 500px;
}

.cta-duo-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.cta-duo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-duo-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta-duo-btn {
  display: inline-block;
  background: #d42c2c;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-duo-btn:hover {
  background: #b52222;
}

@media (max-width: 768px) {
  .cta-duo {
    flex-direction: column;
  }
  .cta-duo-card {
    min-height: 400px;
  }
  .cta-duo-title {
    font-size: 2rem;
  }
}

/* Promo Blocks */
.promo-blocks {
  margin: 40px auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.split-block {
  display: flex;
  width: 100%;
}

.split-right {
  flex-direction: row;
}

.split-left {
  flex-direction: row-reverse;
}

.split-img-wrapper {
  width: 50%;
  min-height: 400px;
}

.split-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-yellow {
  background: #fbb230;
}

.bg-red {
  background: var(--chicking-red);
}

.bg-white {
  background: white;
}

.text-white {
  color: white;
}

.text-chicking-red {
  color: var(--chicking-red);
}

.text-dark {
  color: var(--chicking-dark);
}

h4.sub {
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

h2.title {
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 0.9;
  text-transform: uppercase;
  font-style: italic;
  margin: 0 0 20px 0;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
}

.chicking-btn {
  background: #cc001a;
  color: white;
  padding: 16px 32px;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  border-radius: 12px;
  font-size: 1.1rem;
  width: fit-content;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 rgba(204, 0, 26, 0.3);
}

.chicking-btn.dark {
  background: var(--chicking-dark);
  box-shadow: none;
  border: 3px solid transparent;
}

.chicking-btn.dark:hover {
  border-color: #f2c808;
}

/* ---- UTILITY CLASSES SECTION ---- */
.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  gap: 40px;
}

.footer-brand {
  flex: 1.2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.footer-logo {
  width: 80px;
  height: auto;
  border-radius: 12px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-group a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: white;
}

.footer-signup {
  flex: 0.8;
  border-left: 1px solid #333;
  padding-left: 40px;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-signup p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-signup-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

.footer-signup-link:hover {
  color: #d42c2c;
  border-color: #d42c2c;
}

.footer-social {
  flex: 0.6;
  display: flex;
  flex-direction: column;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social-icons a {
  color: #ccc;
  transition: color 0.2s;
}

.footer-social-icons a:hover {
  color: white;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #777;
  margin-top: auto;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-brand {
    flex-wrap: wrap;
  }
  .footer-signup {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #333;
    padding-top: 24px;
  }
}

/* Media query to allow md:flex-row mapping */
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
}