* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #d71920;
  --dark: #111111;
  --gray-bg: #f7f7f7;
  --line: #ececec;
  --text: #222222;
  --sub: #666666;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.inner {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label.light {
  color: #ffb3b3;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--sub);
  font-size: 17px;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 0 auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 40px 30px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a {
  color: #fff;
  font-size: 15px;
}

.mobile-menu.active {
  display: flex;
}

/* hero */
.event-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.event-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/메인탑.jpg") center center / cover no-repeat;
  transform: scale(1.06);
}

.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.48) 45%, rgba(0,0,0,0.22) 100%);
}

.event-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.event-hero__copy {
  max-width: 840px;
  color: #fff;
}

.page-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffb2b2;
  margin-bottom: 18px;
}

.event-hero__copy h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.event-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.84);
}

/* poster */
.poster-section {
  background: #fff;
}

.poster-frame {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  border: 1px solid #eee;
}

/* overview */
.overview-section {
  background: var(--gray-bg);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.overview-card {
  background: #fff;
  border-radius: 26px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.overview-card span {
  display: inline-block;
  font-size: 52px;
  line-height: 1;
  color: rgba(215, 25, 32, 0.1);
  font-weight: 900;
  margin-bottom: 18px;
}

.overview-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.overview-card p {
  font-size: 15px;
  color: #555;
}

/* seminar */
.seminar-section {
  background: #fff;
}

.seminar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 30px;
}

.seminar-copy,
.seminar-visual {
  width: 48%;
}

.seminar-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.seminar-box {
  border-radius: 28px;
  background: #f8fbff;
  border: 1px solid #dbe9f7;
  padding: 28px;
}

.seminar-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #dfe8ef;
}

.seminar-row:last-child {
  border-bottom: 0;
}

.seminar-row strong {
  min-width: 72px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.seminar-row span {
  color: #444;
  font-size: 16px;
}

.seminar-highlight {
  height: 100%;
  border-radius: 28px;
  padding: 34px;
  background: #111;
  color: #fff;
}

.seminar-highlight h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

.seminar-highlight ul {
  list-style: none;
}

.seminar-highlight li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.84);
}

.seminar-highlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* tour */
.tour-section {
  background: #111;
}

.tour-section .section-head h2,
.tour-section .section-head p {
  color: #fff;
}

.tour-section .section-head p {
  color: rgba(255,255,255,0.72);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.tour-card__thumb img {
  height: 280px;
  object-fit: cover;
}

.tour-card__body {
  padding: 24px;
}

.tour-card__body h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 800;
}

.tour-card__body p {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
}

.tour-banner {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: 22px;
  background: linear-gradient(90deg, #0f4d7f 0%, #1a79b6 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tour-banner strong {
  font-size: 20px;
  font-weight: 800;
}

.tour-banner span {
  font-size: 18px;
}

/* reason */
.reason-section {
  background: #fff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  padding: 30px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.reason-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.reason-card p {
  color: #555;
  font-size: 15px;
}

/* cta */
.event-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.event-cta__bg {
  position: absolute;
  inset: 0;
  background: url("../img/베트남 도시배경.jpg") center center / cover no-repeat;
}

.event-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.56);
}

.event-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.event-cta__inner h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.event-cta__inner p {
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

/* footer */
.footer {
  background: #111;
  color: #fff;
  padding: 70px 0 46px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  width: 28%;
}

.footer-right {
  width: 72%;
}

.footer-logo {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.footer-desc {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.52);
  font-size: 14px;
}

/* animation */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.8s ease;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* responsive */
@media (max-width: 1200px) {
  .overview-grid,
  .tour-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .inner {
    width: calc(100% - 40px);
  }

  .nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .seminar-inner,
  .footer-inner {
    flex-direction: column;
  }

  .seminar-copy,
  .seminar-visual,
  .footer-left,
  .footer-right {
    width: 100%;
  }

  .mobile-menu.active {
    display: flex;
  }

  .tour-banner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }

  .event-hero__copy h1 {
    font-size: 44px;
  }

  .poster-frame {
    border-radius: 20px;
  }

  .seminar-row {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(40px) !important;
  }
}