@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap');

:root {
  --primary: #2d6a4f;
  --primary-light: #40916c;
  --accent: #d4a373;
  --accent-light: #e9c46a;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2b2d42;
  --text-light: #8d99ae;
  --bg: #fefae0;
  --bg2: #f8f4e8;
  --white: #ffffff;
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --card-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.7), rgba(26, 26, 46, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.hero-date {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(212, 163, 115, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 163, 115, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollDot {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 32px;
    opacity: 0;
  }
}

/* NAV */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 224, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-link {
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(45, 106, 79, 0.08);
  border-color: rgba(45, 106, 79, 0.15);
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* WEATHER INFO BAR */
.weather-bar {
  background: linear-gradient(135deg, #e8f5e9, #fff3e0);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.weather-item {
  text-align: center;
}

.weather-item .wi-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.weather-item .wi-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.weather-item .wi-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

/* SPOTS GRID */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.spot-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
}

.spot-card .img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.spot-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.spot-card:hover .img-wrap img {
  transform: scale(1.08);
}

.spot-rank {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spot-tags {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
}

.spot-tag-sm {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
}

.spot-info {
  padding: 1.2rem 1.5rem 1.5rem;
}

.spot-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.spot-location {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.spot-location::before {
  content: '📍 ';
}

.spot-desc {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.spot-tip {
  background: #f0f7f4;
  border-left: 3px solid var(--primary);
  padding: 0.5rem 0.8rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.spot-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* FOOD SECTION */
.food-banner {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}

.food-banner .section-header h2 {
  color: var(--white);
}

.food-banner .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.food-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.food-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}

.food-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.food-card .img-wrap {
  height: 200px;
  overflow: hidden;
}

.food-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.food-card .food-info {
  padding: 1rem 1.3rem 1.3rem;
}

.food-card .food-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.food-card .food-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.food-card .food-price {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* HOTEL */
.hotel-section {
  background: var(--bg2);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.hotel-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
}

.hotel-card .img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.hotel-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.hotel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hotel-info {
  padding: 1.2rem 1.5rem 1.5rem;
}

.hotel-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hotel-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.hotel-meta-item {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hotel-features {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.hotel-feat {
  background: rgba(45, 106, 79, 0.08);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hotel-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.hotel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.hotel-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.hotel-rating {
  background: var(--accent);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* GALLERY STRIP */
.gallery-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  height: 250px;
}

.gallery-strip img {
  height: 100%;
  min-width: 300px;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.4s;
  filter: brightness(0.85);
}

.gallery-strip img:hover {
  filter: brightness(1);
  min-width: 400px;
}

/* ITINERARY */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 3px;
}

.day-block {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 75px;
}

.day-marker {
  position: absolute;
  left: 10px;
  top: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
  z-index: 1;
  flex-direction: column;
  line-height: 1.1;
}

.day-marker small {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.8;
}

.day-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.day-theme {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.day-activities {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.activity {
  background: var(--white);
  padding: 1rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.activity:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.activity-time {
  min-width: 55px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  padding-top: 2px;
}

.activity-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

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

.activity-img {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: auto;
}

.activity-detail {
  font-size: 0.78rem;
  color: var(--primary);
  background: #f0f7f4;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.3rem;
  display: inline-block;
}

/* TIPS */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover);
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.tip-card ul {
  text-align: left;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
  list-style: none;
}

.tip-card ul li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}

/* CHECKLIST */
.checklist-section {
  background: linear-gradient(135deg, #2d6a4f, #1a1a2e);
  color: var(--white);
}

.checklist-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.checklist-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
}

.checklist-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-light);
}

.checklist-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.checklist-card ul li {
  padding: 0.2rem 0;
}

.checklist-card ul li::before {
  content: '☐ ';
  color: var(--accent);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 3rem 1rem;
}

footer .brand {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .spots-grid,
  .hotel-grid,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .day-block {
    padding-left: 60px;
  }

  .day-marker {
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .gallery-strip {
    height: 180px;
  }

  .activity-img {
    display: none;
  }

  .weather-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {

  .tips-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .weather-bar {
    grid-template-columns: 1fr;
  }
}