* {
  margin: 0;
  padding: 0;
}

a,
li {
  color: inherit;
  /* 부모 글자색 따라가기 */
  text-decoration: none;
  list-style: none;
  /* 밑줄 제거 */
}

:root {
  --jeju-orange: #ff6f00;
  --jeju-blue: #4c6fdc;
  --gray-222: #222;
  --gray-555: #555;
  --gray-888: #888;
  --card-radius: 30px;
}

body {
  font-family: "Paperlogy", sans-serif;
  background: #f5f5f5;
  color: var(--gray-222);
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  /* 중앙 정렬 */
  width: 100%;
}

#jeju_header {
  background: #fff;
}


.bg_wrap {
  background-image: url(./img/bg1.png);
}


/* 1단: 유틸 바 ---------------------------------- */
.util_bar .inner {
  height: 36px;
  /* 바 높이 */
  display: flex;
  justify-content: flex-end;
  /* 오른쪽 정렬 */
  align-items: center;
  /* 세로 중앙 정렬 */
}

.util_right {
  display: flex;
  align-items: center;
  /* 구분선 '|' 도 같이 중앙 */
  gap: 8px;
}

.util_right a {
  font-size: 12px;
  color: #888;
}

.util_right .sep {
  font-size: 10px;
  color: #d0d0d0;
}

/* 2단: GNB -------------------------------------- */
.gnb_bar {
  border-bottom: 1px solid #e6e6e6;
  height: 72px;
}

.gnb_inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 왼쪽 로고 */
.logo img {
  width: 100px;
}

/* 가운데 메뉴: 진짜 가운데 위치시키기 */
.gnb_menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.gnb_menu ul {
  display: flex;
  gap: 40px;
}

.gnb_menu a {
  font-size: 16px;
  color: #555;
}

.gnb_menu a.on {
  font-weight: 600;
}

/* 오른쪽 My 버튼 */
.my_btn {
  border: none;
  background: none;
  cursor: pointer;
}

.my_btn img {
  width: 30px;
  margin-bottom: 2px;
}

.my_btn span {
  font-size: 11px;
  color: #333;
}

/* 3단: 브레드크럼 -------------------------------- */
.breadcrumb_bar {
  border-bottom: 1px solid #e8e8e8;
  height: 40px;
  display: flex;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
}

.breadcrumb .material-symbols-outlined {
  font-size: 13px;
  opacity: 0.6;
  color: #c2c2c2;
}

.breadcrumb img {
  margin-left: 10px;
}

.airplane {
  position: absolute;
  top: 18%;
  left: 10%;
}

/* -------------------------
   1. 수능 할인 히어로
-------------------------- */
#su_hero {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
}

/* 상단 비행기 + 타이틀 */

#su_hero .su_hero_top {
  text-align: center;
  margin-bottom: 40px;
}

.plane_wrap img {
  max-width: 360px;
  margin: 0 100px 40px;
}

.title_wrap img {
  width: 600px;
  color: #4a3d4f;
}

.title_sub_1 {
  font-size: 18px;
  letter-spacing: 0.6em;
  margin-bottom: 12px;
}

.title_main .num {
  font-size: 64px;
  font-weight: 700;
}

.title_sub_2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 20px;
  color: #8579AE;
  margin-top: 30px;
}

/* 쿠폰 탭 */
.coupon_tabs {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  z-index: 2;
}

.coupon_tabs img {
  width: 90%;
}

.tab_name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.tab_desc {
  font-size: 12px;
  color: var(--gray-555);
  margin-bottom: 4px;
}

.tab_price {
  font-size: 13px;
  color: #ff4b0a;
  font-weight: 600;
}

.tab_price span {
  font-size: 12px;
  margin-right: 2px;
}

/* 탭 아래 둥근 연결 부분 */
.tab_round {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 28px;
  height: 20px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  border: 1px solid #e4e4e4;
  border-bottom: none;
}

/* 메인 화이트 패널 */
.coupon_panel {
  position: relative;
  margin-top: -80px;
  padding: 150px 60px 36px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coupon_panel img {
  width: 90%;
  margin-bottom: 80px;
}

.panel_notice {
  font-size: 16px;
  color: var(--gray-888);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* -------------------------
   2. 티켓 섹션
-------------------------- */

#ticket_section {
  padding: 40px 0 80px;
  overflow: hidden;
}

.ticket1,
.ticket2 {
  position: relative;
  /* ★ 반드시 필요 */
  margin-bottom: 80px;
}

.ticket1 img,
.ticket2 img {
  width: 100%;
  display: block;
}

/* 공통 버튼 스타일 */
.ticket_btn {
  width: 300px;
  text-align: center;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  background: var(--jeju-orange);
  color: #fff;
  padding: 10px 36px;
  font-size: 26px;
  border-radius: 3px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 유의사항 */
.ticket_notice {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 10px 2px 0;
  font-size: 12px;
  color: #444;
}

.ticket_notice h4 {
  font-size: 28px;
  margin-bottom: 4px;
}

.ticket_notice p {
  font-size: 20px;
  line-height: 2em;
}

.ticket_btn .material-symbols-outlined {
  display: inline-block;
  /* 애니메이션 적용 위해 */
}

/* ★ 국내·해외 인기 여행지 섹션 ---------------------- */
#popular_travel {
  position: relative;
  padding: 60px 0 80px;
  color: #fff;
  overflow: hidden;
}

#popular_travel .popular_bg {
  position: absolute;
  inset: 0;
  background: url(./img/bg2.png) no-repeat center/cover;
  z-index: -1;
}

/* 공통 블록 */
#popular_travel .travel_block {
  margin-bottom: 60px;
}

/* 타이틀 영역 */
#popular_travel .travel_head {
  text-align: center;
  margin-bottom: 50px;
}

#popular_travel .best {
  margin-top: 100px;
}

#popular_travel .title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 8px;
}

#popular_travel .title .heart {
  margin-left: 6px;
  font-size: 18px;
}

#popular_travel .desc {
  font-size: 20px;
  line-height: 2em;
}

#popular_travel .img_wrap {
  display: flex;
  justify-content: center;
  gap: 260px;
  align-items: center;
}


/* 국내 인기 여행지 - 아치 카드 네 개 ---------------- */
.domestic_list {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.city_item {
  width: 300px;
  text-align: center;
  cursor: pointer;
}

/* 아치형 이미지 */
.city_item .thumb {
  width: 100%;
  height: 300px;
  border-radius: 150px 150px 0px 0px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.city_item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 도시명 바 */
.city_item .city_name {
  padding: 6px 0 4px;
  font-size: 28px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.55);
}

.over_divider {
  width: 40px;
  /* 선 길이 */
  height: 3px;
  /* 두께 */
  background: #fff;
  /* 색상 */
  margin: 12px 0 20px;
  /* h3와 p 사이 간격 */
  border-radius: 2px;
}

/* 리스트 전체 */
.overseas_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* 카드 공통 구조 → flex 적용 */
.over_card {
  position: relative;
  display: flex;
  /* ⭐ 핵심 */
  max-width: 100%;
}

/* 이미지 박스 */
.over_card .over_img img {
  width: 700px;
  height: 400px;
  display: block;
}

/* 텍스트 박스 (겹치는 스타일 유지) */
.over_card .over_text {
  position: absolute;
  top: 50%;
  right: 40px;
  font-size: 28px;
  transform: translateY(-50%);
  width: 45%;
  height: 200px;
  padding: 50px 60px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.over_card .over_text p {
  font-size: 18px;
  margin-bottom: 50px 0;
  line-height: 2em;
}

.over_card .over_divider {
  margin-top: 80px;
}

.over_card.green .over_text {
  background: rgba(74, 166, 71, 0.9);
}

.over_card.orange .over_text {
  background: rgba(246, 139, 35, 0.9);
}

.over_card.blue .over_text {
  background: rgba(31, 123, 216, 0.9);
}

.over_card.teal .over_text {
  background: rgba(30, 156, 139, 0.9);
}

/* ⭐ 2번째, 4번째는 구조 자체를 반대로 */
.over_card:nth-child(2n) {
  flex-direction: row-reverse;
  /* 이미지 오른쪽, 텍스트 왼쪽 */
}

/* ⭐ 텍스트 박스 위치도 왼쪽으로 */
.over_card:nth-child(2n) .over_text {
  left: 40px;
  right: auto;
}

/* 메인 타이틀 오렌지 */
.em_orange {
  color: #ff7a00;
}

/* ★ 댓글 / 숙소 EVENT 공통 ---------------------- */
#event_section {
  font-family: "Paperlogy", sans-serif;
}

/* 공통 컨테이너 */
#event_section .inner {
  max-width: 980px;
  margin: 0 auto;
}

/* 블록 배경색 (보라 / 살구색) */
.event_block {
  padding: 120px 0 100px;
}

.event_block.purple {
  background: #EFE5F5;
}

.event_block.peach {
  background: #FAEBE5;
}

/* 공통 타이틀 래퍼 */
.event_head {
  text-align: center;
  margin-bottom: 30px;
}

/* 공통 버튼 래퍼 + 버튼 */
.event_btn_wrap {
  margin-top: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event_btn {
  width: 200px;
  display: inline-block;
  padding: 16px 100px;
  background: #ff6f00;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 오렌지 강조 텍스트 */
.em_orange {
  color: #ff7a00;
}

/* ---------------- 1) 수능 댓글 EVENT ----------- */
/* 타이틀 */
.comment_title {
  font-size: 50px;
  font-weight: 800;
  color: #111;
}

.comment_head .event_sub {
  margin-top: 14px;
  font-size: 24px;
  color: #555;
  font-weight: 500;
}

/* 흰 카드 */
.comment_card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  text-align: left;
}

/* 정보 영역 */
.event_info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
}

.event_row {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
}

/* 왼쪽 주황 타이틀 배지 */
.event_label {
  min-width: 110px;
  padding: 8px 20px;
  background: #ff7a00;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 500;
  text-align: center;
}

/* 오른쪽 설명 */
.event_text {
  flex: 1;
  line-height: 1.7;
}

/* 경품 이미지 영역 */
.event_prizes {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.event_prizes img {
  display: block;
  max-height: 120px;
}

/* ---------------- 2) NOL 인터파크 EVENT -------- */
/* 타이틀 */
.nol_title {
  font-size: 50px;
  font-weight: 800;
  color: #ff6f00;
  line-height: 1.4;
}

.accent_purple {
  color: #8B65B9;
}

/* NOL 카드 */
.nol_card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 50px 34px;
  text-align: end;
}

/* 상단 뱃지 + 제목 */
.nol_header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.nol_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 26px;
  font-size: 18px;
  border-radius: 999px;
  background: #ff6f00;
  color: #fff;
  padding: 8px 20px;
  margin-left: 30px;
}

.nol_header_title {
  font-size: 24px;
  color: #ff6f00;
  margin-left: 30px;
}

/* 내용 리스트 */
.nol_body dl .row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.nol_body dt {
  width: 150px;
  font-size: 20px;
  font-weight: 600;
  color: #353535;
}

.nol_body dd {
  flex: 1;
  font-size: 18px;
  color: #353535;
  line-height: 2em;
  font-weight: 500;
  text-align: start;
  margin-left: 50px;
}

.nol_body dd p {
  font-weight: 600;
  color: #ff6f00;
}


/* 하단 안내문 */
.nol_notice {
  margin-top: 14px;
  font-size: 12px;
  color: #999;
}

.nol_body .row.gray > dt,
.nol_body .row.gray > dd {
  color: #a7a7a7;
  font-size: 16px;
}

/* ★ 최하단 유의사항 ----------------------------------- */
#event_notice {
  background: #4e5967;
  /* 스크린샷 기반 딥그레이 블루 */
  padding: 50px 0;
  color: #cdd2d9;
}

.notice_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice_list li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 6px;
  position: relative;
  padding-left: 12px;
}

/* 리스트 앞에 점(·) 붙이기 */
.notice_list li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #cdd2d9;
}

.top_btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.25s ease;
}

/* 나타날 때 */
.top_btn.show {
  opacity: 1;
  pointer-events: auto;
}

/* hover 효과 */
.top_btn:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}