/* ============================================================
   FRIED CHICKEN HOUSE — Editorial Design System
   Maximalist + Playful + Magazine Energy
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --orange: #f37a21;
  --orange-light: #ff9a4a;
  --orange-hot: #ff5a00;
  --red: #e63b1f;
  --brown: #73381c;
  --brown-dark: #4a2210;
  --cream: #fdf8f2;
  --cream-dark: #f5ede0;
  --cream-border: #ead9c6;
  --white: #ffffff;
  --black: #1a1a1a;
  --text: #73381c;
  --text-muted: rgba(115, 56, 28, 0.5);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-full: 100px;
  --shadow-sm: 0 2px 12px rgba(115, 56, 28, 0.06);
  --shadow-md: 0 12px 40px rgba(115, 56, 28, 0.1);
  --shadow-lg: 0 28px 72px rgba(115, 56, 28, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY — Editorial Scale
   ============================================================ */
.heading-xl {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-md {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.heading-sm {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.text-body {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.text-sm {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--cream-border);
  background: var(--cream-dark);
  border-radius: 0;
  padding: 8px 20px;
}

.accent {
  color: var(--orange);
}

.thin {
  font-weight: 200;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   WATERMARK TEXT — Giant background type
   ============================================================ */
.watermark {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 16rem);
  text-transform: uppercase;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream-border);
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.watermark-filled {
  -webkit-text-stroke: none;
  color: rgba(243, 122, 33, 0.04);
}

/* ============================================================
   BUTTONS — Stroke / Filled
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 32px;
  border-radius: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--cream-border);
  background: transparent;
  color: var(--brown);
  position: relative;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translate(3px, -3px);
  box-shadow: -3px 3px 0 0 var(--orange-light);
}

.btn-primary {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--cream-border);
  color: var(--brown);
}
.btn-secondary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(253, 248, 242, 0.7);
}
.btn-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

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

/* ============================================================
   NAVIGATION — Editorial + Clean
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 0 var(--orange);
  padding: 16px 48px;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
  transition: height var(--transition);
}
.nav.scrolled .nav-logo img {
  height: 36px;
}

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

.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent !important;
  color: var(--orange) !important;
  padding: 10px 24px !important;
  border: 2px solid var(--orange) !important;
  border-radius: 0 !important;
  letter-spacing: 0.08em !important;
  font-weight: 500 !important;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition) !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   MARQUEE — Scroll-driven ticker
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--cream);
  padding: 18px 0;
  white-space: nowrap;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.marquee-track {
  display: flex;
  will-change: transform;
}

.marquee-item {
  flex-shrink: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0 24px;
}

.marquee-item .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 24px;
  vertical-align: middle;
  opacity: 0.4;
}

/* ============================================================
   SPINNING BADGE
   ============================================================ */
.spin-badge {
  width: 100px;
  height: 100px;
  animation: spin 12s linear infinite;
  flex-shrink: 0;
}

.spin-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   HORIZONTAL SCROLL GALLERY
   ============================================================ */
.h-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 48px 24px;
  scrollbar-width: none;
}
.h-scroll::-webkit-scrollbar {
  display: none;
}

.h-scroll-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.h-scroll-item img {
  height: 420px;
  width: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.h-scroll-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   FOOTER — Clean editorial
   ============================================================ */
footer {
  background: var(--cream);
  border-top: 2px solid var(--orange);
}

.footer-top {
  padding: 56px 48px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo img {
  height: 42px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 6px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.social-link img {
  width: 14px;
  height: 14px;
  filter: none;
  transition: filter var(--transition);
}
.social-link:hover {
  border-color: var(--orange);
  background: var(--orange);
}
.social-link:hover img {
  filter: brightness(0) invert(1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.footer-text {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-link {
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-link:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-border);
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-credit {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.6;
  transition: color var(--transition);
}
.footer-credit:hover {
  color: var(--orange);
  opacity: 1;
}
.footer-credit span {
  opacity: 0.6;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  margin-bottom: 18px;
}
.section-header p {
  max-width: 480px;
  margin: 18px auto 0;
}

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

.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  .nav {
    padding: 18px 24px;
  }
  .nav.scrolled {
    padding: 14px 24px;
  }
  .section {
    padding: 80px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
    overflow-y: auto;
    padding-top: 80px;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav-links a {
    font-size: 1.4rem !important;
    letter-spacing: 0.08em !important;
  }
  .nav-toggle {
    display: flex;
    z-index: 102;
  }

  .footer-top { padding: 40px 24px; }
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
  }

  .watermark {
    font-size: clamp(4rem, 14vw, 8rem);
  }
  .h-scroll {
    padding: 0 24px 20px;
    gap: 14px;
  }
  .h-scroll-item img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .h-scroll-item img {
    height: 240px;
  }
  .spin-badge {
    width: 72px;
    height: 72px;
  }
}
