/* ============================================
   KIMCHIK - Korean Fried Chicken Landing Page
   Art Direction: Bold, Loud, Unfiltered
   ============================================ */

:root {
  --pink: #FF1B6B;
  --pink-dark: #E0155E;
  --cyan: #00D4FF;
  --cyan-dark: #00B8DB;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --gray: #2A2A2A;
  --white: #FFFFFF;
  --cream: #F5F0E8;
  --text-light: #B0B0B0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   Marquee Banner
   ============================================ */
.marquee-bar {
  background: var(--pink);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--white);
  padding-right: 0;
}

.marquee-track.reverse {
  animation: marquee-reverse 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  padding-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.scrolled .nav-inner {
  padding: 14px 0;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-logo {
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--cyan) !important;
  color: var(--black) !important;
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--pink);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--cyan);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-title .line1 {
  display: block;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--white);
}

.hero-title .line2 {
  display: block;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--text-light);
}

.hero-title .line3 {
  display: block;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--white);
}

.dot {
  color: var(--pink);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-sticker {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 50px;
  animation: float 3s ease-in-out infinite;
}

.sticker-1 {
  top: 10%;
  right: 0;
  background: var(--cyan);
  color: var(--black);
  transform: rotate(8deg);
  letter-spacing: 0.1em;
}

.sticker-2 {
  bottom: 15%;
  left: 5%;
  background: var(--pink);
  color: var(--white);
  font-size: 1.5rem;
  transform: rotate(-6deg);
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 8deg)); }
  50% { transform: translateY(-10px) rotate(var(--rotate, 8deg)); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--pink));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* ============================================
   Marquee Divider
   ============================================ */
.marquee-divider {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-divider .marquee-track span {
  font-size: 1rem;
  color: var(--pink);
  letter-spacing: 0.1em;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
}

.highlight {
  color: var(--pink);
}

/* ============================================
   Menu Section
   ============================================ */
.menu-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.menu-card {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card:hover .menu-card-img .img-placeholder {
  transform: scale(1.05);
}

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 1;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
  transition: transform 0.6s var(--ease-out);
  border: 2px dashed rgba(255, 255, 255, 0.08);
}

.img-placeholder.tall {
  min-height: 400px;
}

.menu-card-info {
  padding: 20px;
}

.menu-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.menu-card-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.menu-cta {
  text-align: center;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-1 {
  transform: translateY(-30px);
}

.about-img-2 {
  transform: translateY(30px);
}

.about-img-1 img,
.about-img-2 img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================
   Big Statement
   ============================================ */
.statement-section {
  padding: 120px 40px;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.big-statement {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  color: var(--white);
}

/* ============================================
   Locations Section
   ============================================ */
.locations-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}

.location-card:hover {
  transform: translateY(-6px);
}

.location-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.location-info {
  padding: 24px;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.location-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.location-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
  transition: color 0.3s;
}

.location-link:hover {
  color: var(--cyan);
}

/* ============================================
   Order Section
   ============================================ */
.order-section {
  padding: 120px 40px;
  text-align: center;
  background: var(--pink);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: 'KIMCHIK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

.order-content {
  position: relative;
  z-index: 1;
}

.order-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 40px;
}

.order-title .highlight {
  color: var(--black);
}

.order-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.order-section .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--pink);
  font-weight: 900;
}

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

.order-section .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.order-section .btn-outline:hover {
  background: var(--white);
  color: var(--pink);
}

.order-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 8px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer-bottom .marquee-track span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.15em;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 120px 20px 60px;
    gap: 40px;
    min-height: auto;
  }

  .hero-image {
    width: 100%;
  }

  .hero-img-placeholder {
    max-width: 100%;
    aspect-ratio: 1;
  }

  .hero-scroll-hint {
    display: none;
  }

  .menu-section,
  .about-section,
  .locations-section {
    padding: 60px 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .about-stats {
    gap: 32px;
  }

  .order-section {
    padding: 80px 20px;
  }

  .order-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer-links {
    gap: 40px;
  }

  .statement-section {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title .line1,
  .hero-title .line3 {
    font-size: 4rem;
  }

  .hero-title .line2 {
    font-size: 2.5rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-1,
  .about-img-2 {
    transform: none;
  }
}
