* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "LotteMartHappy", sans-serif;
  font-weight: 300; /* Light */
}

h1,
h2 {
  font-family: "LotteMartHappy", sans-serif;
  font-weight: 700; /* Bold */
}

.card-content {
  font-family: "LotteMartHappy", sans-serif;
  font-weight: 500; /* Medium */
}

@font-face {
  font-family: "LotteMartHappy";
  src: url("../fonts/12롯데마트행복Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "LotteMartHappy";
  src: url("../fonts/12롯데마트행복Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "LotteMartHappy";
  src: url("../fonts/12롯데마트행복Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* 기본 a 링크 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 리스트 기본 점 제거 */
ul {
  list-style: none;
}

.travel-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.travel-section h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.travel-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* 헤더 상단바 영역 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* 네비 내부 정렬 */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 왼쪽 :  로고 및 링크 */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
}

.nav-left img {
  height: 50px;
}

/* 메뉴 항목 스타일 */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 100px;
  font-family: "LotteMartHappy", sans-serif !important;
}

.nav-links li {
  position: relative;
  display: flex; /* li를 flex 컨테이너로 만듦 */
  align-items: center; /* 내부 컨텐츠(텍스트, span)를 수직 중앙 정렬 */
  gap: 4px; /* 텍스트와 NEW 배지 사이 간격 약간 추가 */
  font-weight: 500; /* 필요하면 글자 굵기 조절 */
  cursor: pointer; /* 마우스 커서 포인터로 */
}

.nav-links li span {
  position: absolute;
  top: -18px; /* 더 위로 올림 (기존 -10px에서 -18px) */
  right: 0;
  font-size: 10px;
  color: #fff;
  background: #ffaeae;
  border-radius: 8px;
  padding: 2px 6px;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  z-index: 10; /* 혹시 글자 위에 올라오도록 */
}

/* 말풍선 꼬리 */
.nav-links li span.new::after {
  content: "";
  position: absolute;
  bottom: -4px; /* 꼬리 위치를 아래로 조금 더 내림 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px; /* 꼬리 크기 조절 */
  border-style: solid;
  border-color: #ffaeae transparent transparent transparent; /* 배경색과 동일하게 */
}

.nav-links li span.new-alt::after {
  content: "";
  position: absolute;
  bottom: -4px; /* 꼬리 위치를 아래로 조금 더 내림 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px; /* 꼬리 크기 조절 */
  border-style: solid;
  border-color: #ffaeae transparent transparent transparent; /* 배경색과 동일하게 */
}

/* 오른쪽 아이콘 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  cursor: pointer;
  flex-direction: row;
}

/* ============================== */
/* Hero 배너 영역 */
/* ============================== */

.hero {
  margin-top: 70px;
  position: relative;
  text-align: center;
  color: #000;
  overflow: hidden;
}

/* 배너 이미지 */
.hero img.banner {
  width: 100%;
  height: 725px;
  object-fit: cover;
  object-position: center;
}

/* 배너 내 텍스트 콘텐츠 */
.hero-content {
  position: absolute;
  top: 42px;
  left: 81px;
  width: 60%;
  height: 77%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  color: #000;
  padding-left: 60px;
}

/* 메인 타이틀 */
.hero-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 부제목 */
.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* ============================== */
/* 검색 박스 */
/* ============================== */
.search-box {
  background: #fff;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 400px;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 8px 12px;
  justify-content: space-between;
  gap: 8px;
}

.search-box svg {
  width: 20px;
  height: 20px;
  fill: #666;
  flex-shrink: 0;
}

/* 검색 입력창 */
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
}

/* 검색 버튼 */
.search-box button {
  background: #ff5a5f;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}

.search-box button:hover {
  background: #e14b50;
}

/* 두 번째 단락 스타일 */
.moment-section {
  text-align: center;
  padding: 60px 20px;
  background: #f7f7f7;
}

.moment-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.moment-section p {
  font-size: 16px;
  color: #888;
  margin-bottom: 30px;
}

/* 가로 정렬 컨테이너 */
.horizontal-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* 슬라이더 컨테이너 - 중앙 정렬 및 화살표 포함 */
.slider-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  justify-content: center;
}

.slider-container .slider {
  display: flex;
}

/* 슬라이더 영역 */
.experience-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.experience-slider::-webkit-scrollbar {
  display: none;
}

.experience-slider.original-experience {
  max-width: 800px;
  margin: 0 auto;
}

.experience-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 개별 슬라이드 */
.slide {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
}

.slide img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.slide span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* 숙소 카드 섹션 */
.accommodation-section {
  padding: 113px 20px;
  background: #fff;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  z-index: 1000 !important;
}

/* ============================== */
/* 숙소 카드 영역 */
/* ============================== */

.cards-grid {
  max-width: 1200px;
  /* height: 500px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* 카드 공통 스타일 (숙소, 경험, 패키지 공용) */
.card,
.experience-card,
.package-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative; /* 숙소 카드용 */
}

.card:hover,
.experience-card:hover,
.package-item:hover {
  transform: translateY(-5px);
  /* 호버 시 살짝 띄우기 */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.guest-favorite {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: #222;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.heart-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.heart-icon:hover {
  background: white;
  transform: scale(1.1);
}

.card-content {
  padding: 16px;
}

.location {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.distance {
  font-size: 14px;
  color: #717171;
  margin-bottom: 4px;
}

.dates {
  font-size: 14px;
  color: #717171;
  margin-bottom: 8px;
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.price-per-night {
  font-size: 14px;
  font-weight: 400;
  color: #222;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700; /* 또는 bold */
}

.star {
  color: #ff385c;
  font-size: 12px;
}

.rating-text {
  font-size: 14px;
  color: #222;
  font-weight: 500;
}

/* 검색 계속하기 버튼 */
.continue-search-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 130px;
}

.continue-search-btn {
  position: relative;
  background-color: #e57373;
  border: none;
  border-radius: 20px; /* 모서리만 둥근 사각형 */
  padding: 15px 20px; /* 여백 확대 */
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center; /*  중앙 정렬 */
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(229, 115, 115, 0.4);
  transition: all 0.2s ease;
  max-width: 600px; /* 버튼 길이감 있게 */
  width: 95%;
}

.continue-search-btn:hover {
  background-color: #d45c5c;
  transform: translateY(-2px);
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  white-space: nowrap; /* 한 줄 유지 */
}

.btn-text small {
  font-size: 14px;
  color: #f0f0f0; /* 필요한 색상으로 조정 */
  display: inline; /* 옆으로 붙게 설정 */
}

.btn-image-wrapper {
  width: 36px; /* 축소 */
  height: 36px; /* 축소 */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.btn-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-stack {
  position: relative;
  width: 50px;
  height: 50px;
}

/* 이미지 스택용 `.stack-card` */
.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border: 5px solid white;
  object-fit: cover;
}

.stack-card1 {
  transform: rotate(-5deg);
  z-index: 4;
}
.stack-card2 {
  transform: rotate(-2deg);
  z-index: 3;
}
.stack-card3 {
  transform: rotate(2deg);
  z-index: 2;
}
.stack-card4 {
  transform: rotate(5deg);
  z-index: 1;
}

/* .card {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border: 5px solid white;
  object-fit: cover; /* 정사각형 비율 유지하며 꽉 채우기 */

/* .card1 {
  transform: rotate(-5deg);
  z-index: 4;
}
.card2 {
  transform: rotate(-2deg);
  z-index: 3;
}
.card3 {
  transform: rotate(2deg);
  z-index: 2;
}
.card4 {
  transform: rotate(5deg);
  z-index: 1;
} */

/* 사진 컨테이너 */
.photo-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
}

.photo-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.photo-item img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  display: block;
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 15px 15px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .experience-card {
    width: 180px;
  }

  .experience-card img {
    height: 180px;
  }

  /* 화살표 */
  .arrow-next {
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    user-select: none;
  }
  .arrow-next:hover {
    border-color: #ff5a5f;
    color: #ff5a5f;
    transform: scale(1.1);
  }
  .service-card {
    flex: 0 0 100%;
  }

  .slider-container {
    gap: 10px;
  }

  .slider-controls {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider-controls.prev {
    left: 15px;
  }

  .slider-controls.next {
    right: 15px;
  }

  .progress-bar {
    width: 80%;
  }

  .progress-dots {
    margin-left: 10px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-container {
    flex-direction: column;
    align-items: center;
  }

  .photo-item img {
    width: 200px;
    height: 250px;
  }
  .center-title {
    font-size: 16px;
    padding: 6px 12px;
  }

  .slider-controls {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .center-title {
    font-size: 16px;
    padding: 6px 12px;
  }

  .slider-controls {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* 개별 체험 카드 */
.experience-card {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  cursor: pointer;
}

.continue-search-btn {
  font-size: 16px;
  padding: 12px 20px;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.popular-packages {
  text-align: center;
  padding: 112px 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.section-logo {
  height: 40px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}

.rating .stars {
  color: #ff6b6b;
  font-size: 16px;
}

.package-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.package-item {
  position: relative;
  width: 250px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-item:hover {
  transform: translateY(-5px);
}

.package-item img {
  width: 100%;
  display: block;
}

.package-item.large {
  width: 330px;
  height: 400px; /* 정사각형 만들기 */
  overflow: hidden;
  position: relative;
}

.package-item.large img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지가 정사각형에 맞게 꽉 채워짐 */
}

.package-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%; /* overlay 전체를 덮게 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
  color: white;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 텍스트와 버튼을 아래쪽에 붙이기 */
  z-index: 2; /* 이미지 위에 올라오도록 */
}

.package-overlay p {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 196px;
}

.detail-btn {
  position: absolute;
  bottom: 59px;
  left: 48px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: white;
  color: black;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.detail-btn:hover {
  background: #f0f0f0;
}

.package-caption {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 12px;
  font-size: 14px;
  text-align: left;
  line-height: 1.4;
}

.package-caption strong {
  font-weight: 700;
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.package-item:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 -10px 20px rgba(0, 0, 0, 0.2), inset 10px 0 20px rgba(0, 0, 0, 0.2),
    inset -10px 0 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.experience-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.experience-header p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.view-all-btn {
  background: #ff5a5f;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background: #e14b50;
}

.experience-section {
  max-width: 1024px;
  margin: 40px auto;
  text-align: left;
}

.experience-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 10px;
}

/* ============================== */
/* 체험 슬라이더 */
/* ============================== */
.experience-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #333;
}

.experience-info .price {
  font-weight: 600;
  color: #ff5a5f;
}

.experience-info span {
  font-weight: 600;
  color: #ff5a5f;
}

/* 네번 째 단락 */

.airbnb-experience {
  padding: 88px 20px;
  text-align: center;
  background: #f7f7f7;
}

.experience-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.view-all-btn {
  background: #f87171;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background: #e14b50;
}

.experience-section {
  text-align: left;
  max-width: 1024px;
  margin: 40px auto;
}

.experience-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 10px;
}

.experience-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.experience-info {
  padding: 15px;
  font-size: 13px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 수직 가운데 */
  align-items: center; /* 수평 가운데 */
  height: 100px; /* 카드 높이에 맞게 조절하거나 auto로 두기 */
}

.experience-info p {
  margin-bottom: 4px;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
}

.experience-info span {
  font-weight: 500;
  font-size: 12.5px;
  color: #666;
}

/* 좌우 화살표 */
.arrow {
  background: none;
  border: none;
  font-size: 30px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
  padding: 5px 10px;
}

.arrow:hover {
  color: #ff5a5f;
}

/* 마지막 단락 서비스 */
.airbnb-service {
  max-width: 1200px;
  margin: 66px auto;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}

.service-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.view-all-btn {
  background: #f87171;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px; /* 둥근 직사각형 */
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #e14b50;
  transform: translateY(-2px);
}

/* 체험 슬라이더 영역 */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

/* 서비스 슬라이더 영역 */
.massage-slider-wrapper,
.photo-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: white;
  margin-bottom: 80px;
}

.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: #f87171;
  z-index: 10;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 280px;
}

.service-card {
  flex: 0 0 20%;
  min-width: 200px;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.toggle-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  z-index: 10;
  /* transition: background-color 0.2s; */
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  /* backdrop-filter: blur(10px); */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.active-center img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: all 0.3s ease;
}

.slide {
  flex: 0 0 200px;
  margin: 0 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.side-1 img {
  opacity: 0.6;
  transform: scale(0.95);
  filter: blur(1px);
  transition: all 0.3s ease;
}

.side-2 img {
  opacity: 0.4;
  transform: scale(0.9);
  filter: blur(2px);
  transition: all 0.3s ease;
}

/* 진행 바 / 점형 인디케이터 스타일 추가 */
.indicator-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s;
}

.indicator-dot.active {
  background: #f87171;
}

.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.progress-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  width: 60%;
  border-radius: 3px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f87171, #ff9a9e);
  transition: width 0.1s linear;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

.progress-dots {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.8);
  transform: scale(1.2);
}

.progress-dot:hover {
  background: rgba(248, 113, 113, 0.7);
  transform: scale(1.1);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.slider-controls:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-controls.prev {
  left: 20px;
}

.slider-controls.next {
  right: 20px;
}

.slide-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.travel-footer {
  background-color: #555;
  padding: 30px 60px; /* 좌우 60px 정도 여백 */
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  color: white;
  font-size: 14px;
}

.travel-footer h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-content h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, max-content); /* 꼭 추가해주세요! */
  justify-content: start;
  gap: 10px 30px;
  margin-bottom: 50px;
  font-size: 13px;
  line-height: 1.4;
  color: #ccc;
  white-space: nowrap;
}

.footer-grid div {
  cursor: pointer;
  transition: color 0.3s;
}

.footer-grid div:hover {
  color: #ddd;
}

.footer-content p {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.3;
}

.footer-links {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-info {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  justify-content: flex-end; /* 오른쪽 정렬 */
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s, filter 0.3s;
}

.footer-socials a img:hover {
  transform: scale(1.1);
  filter: brightness(0.8) invert(1);
}
