/* ===================================================================
   Newport Beach Korean Festival 2026 (뉴포트 비치 K-페스티벌)
   Custom Art & Culture Styling
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --kf-navy: #0b2545;
  --kf-deep-blue: #13293d;
  --kf-ocean-cyan: #0096c7;
  --kf-sea-blue: #0077b6;
  --kf-gold: #e5a93c;
  --kf-gold-light: #ffd166;
  --kf-gold-dark: #b38222;
  --kf-dancheong-red: #d90429;
  --kf-coral-red: #e63946;
  --kf-dark: #121417;
  --kf-dark-card: #1a1e24;
  --kf-gray-light: #f8f9fa;
  --kf-gray-border: #e9ecef;
}

body {
  font-family: 'Montserrat', 'Noto Sans KR', 'Poppins', sans-serif;
  color: #2b2d42;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Header & Brand */
.rd-navbar-wrap {
  position: relative;
  z-index: 1050;
}

.rd-navbar-classic.rd-navbar-static {
  background: rgba(11, 37, 69, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
  max-width: 1540px !important;
  padding: 12px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-panel {
  flex-shrink: 0 !important;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main-element {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 1 !important;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-nav-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  flex-wrap: nowrap !important;
}

.kfest-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.kfest-brand-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.kfest-brand-wrap:hover .kfest-brand-logo {
  transform: rotate(4deg) scale(1.05);
}

.kfest-brand-text {
  display: flex;
  flex-direction: column;
}

.kfest-brand-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.kfest-brand-title span {
  color: var(--kf-gold-light);
}

.kfest-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-nav {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  gap: 2px !important;
  flex-wrap: nowrap !important;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-item {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  padding: 8px 12px !important;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.rd-navbar-classic.rd-navbar-static .rd-nav-item:hover > .rd-nav-link,
.rd-navbar-classic.rd-navbar-static .rd-nav-item.active > .rd-nav-link {
  color: var(--kf-gold-light) !important;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Navigation Free RSVP Button */
.btn-nav-rsvp {
  background: linear-gradient(135deg, var(--kf-dancheong-red) 0%, #ff4d6d 100%);
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  box-shadow: 0 4px 14px rgba(217, 4, 41, 0.4);
  transition: all 0.25s ease;
  margin-left: 12px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-nav-rsvp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 4, 41, 0.55);
  color: #ffffff !important;
}

/* Mobile Fixed Navbar Styles */
.rd-navbar-classic.rd-navbar-fixed .rd-navbar-panel {
  background: #0b2545 !important;
  height: 64px !important;
  padding: 6px 16px !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 1080 !important;
}

.rd-navbar-classic.rd-navbar-fixed .kfest-brand-logo {
  height: 38px !important;
  width: auto !important;
}

.rd-navbar-classic.rd-navbar-fixed .kfest-brand-title {
  font-size: 14px !important;
}

.rd-navbar-classic.rd-navbar-fixed .kfest-brand-sub {
  font-size: 9px !important;
}

.rd-navbar-classic.rd-navbar-fixed .rd-navbar-nav-wrap {
  background: #0b2545 !important;
  top: 64px !important;
  bottom: 0 !important;
  width: 280px !important;
  padding: 24px 18px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.45) !important;
  z-index: 1079 !important;
}

.rd-navbar-classic.rd-navbar-fixed .rd-navbar-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}

.rd-navbar-classic.rd-navbar-fixed .rd-nav-item {
  display: block !important;
  width: 100% !important;
}

.rd-navbar-classic.rd-navbar-fixed .rd-nav-link {
  display: block !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 8px !important;
}

.rd-navbar-classic.rd-navbar-fixed .rd-nav-item.active .rd-nav-link,
.rd-navbar-classic.rd-navbar-fixed .rd-nav-link:hover {
  background: rgba(229, 169, 60, 0.2) !important;
  color: var(--kf-gold-light) !important;
}

.rd-navbar-classic.rd-navbar-fixed .btn-nav-rsvp {
  margin: 10px 0 0 0 !important;
  width: 100% !important;
  text-align: center !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
  display: block !important;
}

/* Hero Section */
.kfest-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(7, 26, 50, 0.94) 0%, rgba(13, 33, 58, 0.96) 100%),
              radial-gradient(circle at 85% 20%, rgba(0, 180, 216, 0.20) 0%, transparent 55%),
              radial-gradient(circle at 15% 75%, rgba(229, 169, 60, 0.16) 0%, transparent 50%),
              #071a32;
  color: #ffffff;
  padding: 130px 0 75px !important;
  overflow: hidden;
}

@media (min-width: 992px) {
  .kfest-hero {
    min-height: clamp(660px, 88vh, 880px);
    padding: 135px 0 85px !important;
  }
}

.kfest-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(0, 150, 199, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(229, 169, 60, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.hero-badge .badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--kf-dancheong-red);
  box-shadow: 0 0 8px var(--kf-dancheong-red);
}

.hero-title-main {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  word-break: keep-all;
}

.hero-title-main span.gradient-text {
  background: linear-gradient(135deg, #ffd166 0%, #ffffff 50%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-subtitle strong {
  color: var(--kf-gold-light);
  font-weight: 600;
}

.hero-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero-meta-item i, .hero-meta-item span.icon {
  font-size: 22px;
  color: var(--kf-gold-light);
}

.hero-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-meta-value {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
}

.kfest-hero .group-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.kfest-hero .group-sm .button {
  margin-top: 0;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

/* Hero Poster Display */
.hero-poster-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #000;
}

.hero-poster-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.7), 0 0 0 2px var(--kf-gold-light);
}

.hero-poster-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-poster-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 37, 69, 0.9);
  color: var(--kf-gold-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 209, 102, 0.4);
}

/* Countdown Banner */
.kfest-countdown-section {
  position: relative;
  margin-top: -45px;
  z-index: 10;
  padding-bottom: 30px;
}

.kfest-countdown-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.countdown-intro h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--kf-navy);
  margin-bottom: 4px;
}

.countdown-intro p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.kfest-countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.kfest-timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f5 100%);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.kfest-timer-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--kf-navy);
  font-family: 'Montserrat', sans-serif;
}

.kfest-timer-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8d99ae;
  margin-top: 5px;
}

.kfest-timer-sep {
  font-size: 28px;
  font-weight: 700;
  color: var(--kf-gold);
}

/* Section Common Titles */
.kfest-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}

.kfest-sub-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kf-dancheong-red);
  margin-bottom: 12px;
  background: rgba(217, 4, 41, 0.08);
  padding: 5px 16px;
  border-radius: 30px;
}

.kfest-section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--kf-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.kfest-section-desc {
  font-size: 16px;
  color: #5c677d;
  line-height: 1.65;
}

/* 6 Pillars Cards */
.pillar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--kf-ocean-cyan), var(--kf-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 37, 69, 0.12);
  border-color: #cbd5e1;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  background: rgba(0, 150, 199, 0.1);
  color: var(--kf-sea-blue);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--kf-navy);
  color: var(--kf-gold-light);
  transform: scale(1.08);
}

.pillar-card.art-card .pillar-icon-box {
  background: rgba(229, 169, 60, 0.15);
  color: var(--kf-gold-dark);
}

.pillar-card.movie-card .pillar-icon-box {
  background: rgba(217, 4, 41, 0.12);
  color: var(--kf-dancheong-red);
}

.pillar-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8d99ae;
  margin-bottom: 8px;
}

.pillar-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--kf-navy);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ===================================================================
   SPECIAL SECTION 1: K-ART (Sunny Kim - Contemporary Artist)
   =================================================================== */
.section-k-art {
  background: radial-gradient(circle at 10% 20%, #1c232d 0%, #0c0f13 90%);
  color: #ffffff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section-k-art::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(229, 169, 60, 0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.k-art-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.2) 0%, rgba(229, 169, 60, 0.05) 100%);
  border: 1px solid rgba(229, 169, 60, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  color: var(--kf-gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.k-art-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.k-art-title span {
  color: var(--kf-gold-light);
}

.k-art-subtitle {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.k-art-quote-box {
  border-left: 3px solid var(--kf-gold);
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 12px 12px 0;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.k-art-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 30px;
}

.k-art-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.k-art-highlights-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.k-art-highlights-list li i, .k-art-highlights-list li span {
  color: var(--kf-gold);
  font-size: 18px;
}

.k-art-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-art-gold {
  background: linear-gradient(135deg, var(--kf-gold) 0%, #b38222 100%);
  color: #121417 !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(229, 169, 60, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-art-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 169, 60, 0.5);
  color: #000000 !important;
}

.btn-art-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-art-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.art-poster-frame {
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg, #2a2e37 0%, #15181e 100%);
  border-radius: 20px;
  border: 1px solid rgba(229, 169, 60, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.art-poster-frame:hover {
  transform: translateY(-6px);
  border-color: var(--kf-gold-light);
}

.art-poster-frame img {
  border-radius: 12px;
  width: 100%;
  display: block;
}

/* ===================================================================
   SPECIAL SECTION 2: K-MOVIE (BEAT MAKER - 비트메이커)
   =================================================================== */
.section-k-movie {
  background: #0f1115;
  color: #ffffff;
  padding: 110px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.k-movie-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 219, 20, 0.15);
  border: 1px solid rgba(250, 219, 20, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  color: #fadb14;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.movie-headline-title {
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 15px;
  color: #ffffff;
}

.movie-headline-title span {
  color: #fadb14;
}

.movie-logline-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #fadb14;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}

.movie-logline-en {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.movie-logline-kr {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.movie-specs-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8d99ae;
  margin-bottom: 3px;
}

.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.movie-poster-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
  background: #1a1e24;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-poster-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #fadb14;
  box-shadow: 0 24px 50px rgba(250, 219, 20, 0.2);
}

.movie-poster-card img {
  width: 100%;
  display: block;
}

.movie-poster-caption {
  padding: 14px 16px;
  background: #14171d;
  text-align: center;
}

.movie-poster-caption h5 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.movie-poster-caption span {
  font-size: 11px;
  color: #8d99ae;
}

/* ===================================================================
   SCHEDULE TIMELINE
   =================================================================== */
.section-schedule {
  background: #f8f9fa;
  padding: 100px 0;
}

.timeline-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 120px;
  width: 3px;
  background: #e2e8f0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}

.timeline-time {
  width: 105px;
  text-align: right;
  padding-right: 25px;
  font-size: 15px;
  font-weight: 800;
  color: var(--kf-navy);
  padding-top: 14px;
}

.timeline-dot {
  position: absolute;
  left: 113px;
  top: 16px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--kf-ocean-cyan);
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  border-color: var(--kf-dancheong-red);
  transform: scale(1.2);
}

.timeline-card {
  margin-left: 45px;
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.timeline-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--kf-navy);
  margin: 0;
}

.timeline-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
}

.timeline-card-badge.badge-art {
  background: rgba(229, 169, 60, 0.15);
  color: var(--kf-gold-dark);
}

.timeline-card-badge.badge-movie {
  background: rgba(217, 4, 41, 0.12);
  color: var(--kf-dancheong-red);
}

.timeline-card-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ===================================================================
   VENUE & MAP
   =================================================================== */
.section-venue {
  padding: 100px 0;
  background: #ffffff;
}

.venue-info-box {
  background: var(--kf-navy);
  color: #ffffff;
  border-radius: 18px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(11, 37, 69, 0.2);
}

.venue-info-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.venue-info-address {
  font-size: 16px;
  color: var(--kf-gold-light);
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.venue-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.venue-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.venue-feature-list li i, .venue-feature-list li span {
  color: var(--kf-ocean-cyan);
  font-size: 18px;
}

.map-embed-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 380px;
  border: 1px solid #e2e8f0;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ===================================================================
   RSVP & STAY CONNECTED
   =================================================================== */
.section-rsvp {
  background: linear-gradient(135deg, #0b2545 0%, #13293d 100%);
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.rsvp-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 45px;
  max-width: 780px;
  margin: 0 auto;
}

.rsvp-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.rsvp-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.rsvp-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.rsvp-input {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: #1a1e24;
  font-size: 14px;
  outline: none;
}

.rsvp-input:focus {
  border-color: var(--kf-gold-light);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.35);
}

.btn-rsvp-submit {
  background: linear-gradient(135deg, var(--kf-dancheong-red) 0%, #ff4d6d 100%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-rsvp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 4, 41, 0.6);
}

.social-connect-bar {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-connect-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-connect-link:hover {
  background: var(--kf-gold);
  color: var(--kf-navy);
  transform: translateY(-3px);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.kfest-footer {
  background: #08121e;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  height: 52px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-nav-list a:hover {
  color: var(--kf-gold-light);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES (COMPREHENSIVE DESKTOP & MOBILE ADAPTATION)
   =================================================================== */

/* Tablets & Small Desktops (<= 991.98px) */
@media (max-width: 991.98px) {
  .hero-title-main {
    font-size: clamp(30px, 4.8vw, 42px) !important;
  }
  .hero-subtitle {
    font-size: 17px !important;
  }
  .hero-poster-card {
    max-width: 380px;
    margin: 35px auto 0;
  }
  .kfest-countdown-section {
    margin-top: -30px;
  }
  .countdown-intro {
    text-align: center;
    margin-bottom: 20px;
  }
  .timeline-wrap::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column;
    padding-left: 45px;
  }
  .timeline-time {
    width: auto;
    text-align: left;
    padding: 0 0 8px 0;
  }
  .timeline-dot {
    left: 13px;
    top: 3px;
  }
  .timeline-card {
    margin-left: 0;
    width: 100%;
  }
  .movie-headline-title {
    font-size: 38px;
  }
  .k-art-title {
    font-size: 38px;
  }
  .art-poster-frame {
    max-width: 440px;
    margin: 35px auto 0;
  }
}

/* Tablets Portrait & Mobile Landscape (<= 767.98px) */
@media (max-width: 767.98px) {
  .kfest-hero {
    padding: 95px 0 50px !important;
    min-height: auto !important;
  }
  .hero-meta-grid {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .hero-meta-item {
    width: 100%;
    padding: 10px 14px;
  }
  .hero-meta-item i, .hero-meta-item span.icon {
    font-size: 20px;
  }
  .hero-meta-value {
    font-size: 13.5px;
  }
  .kfest-hero .group-sm {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .kfest-hero .group-sm .button {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0;
    padding: 13px 20px;
    font-size: 13.5px;
  }
  .kfest-section-title {
    font-size: 28px !important;
  }
  .kfest-section-header {
    margin-bottom: 35px;
  }
  .pillar-card {
    padding: 24px 20px;
  }
  .k-art-links {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-art-gold, .btn-art-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .section-k-art, .section-k-movie, .section-schedule {
    padding: 70px 0;
  }
}

/* Standard & Compact Mobile Phones (<= 575.98px) */
@media (max-width: 575.98px) {
  .hero-title-main {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 14px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 14px;
  }
  .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 22px;
  }
  .kfest-countdown-section {
    margin-top: -20px;
    padding-bottom: 15px;
  }
  .kfest-countdown-box {
    padding: 18px 12px;
    border-radius: 14px;
  }
  .countdown-intro h3 {
    font-size: 20px;
  }
  .countdown-intro p {
    font-size: 12.5px;
  }
  .kfest-countdown-timer {
    gap: 4px;
  }
  .kfest-timer-item {
    min-width: 54px;
    padding: 8px 4px;
    border-radius: 8px;
  }
  .kfest-timer-num {
    font-size: 20px;
  }
  .kfest-timer-label {
    font-size: 8.5px;
    letter-spacing: 0.04em;
  }
  .kfest-timer-sep {
    font-size: 16px;
    margin: 0;
  }
  .kfest-brand-title {
    font-size: 14px;
  }
  .movie-headline-title {
    font-size: 28px;
  }
  .movie-logline-en {
    font-size: 16px;
  }
  .movie-specs-table {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .k-art-title {
    font-size: 28px;
  }
  .k-art-quote-box {
    padding: 14px 16px;
    font-size: 14.5px;
  }
  .timeline-item {
    padding-left: 36px;
  }
  .timeline-card {
    padding: 16px;
  }
  .timeline-card h4 {
    font-size: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Extra Small Phones (<= 375px) */
@media (max-width: 375px) {
  .hero-title-main {
    font-size: 25px !important;
  }
  .kfest-timer-item {
    min-width: 48px;
    padding: 6px 2px;
  }
  .kfest-timer-num {
    font-size: 18px;
  }
  .kfest-timer-label {
    font-size: 8px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
}
