/* =============================================
   NEMO'S LITTLE HOUSE - Main Stylesheet
   Nature palette: warm browns, sage greens, cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

/* === CSS Variables === */
:root {
  --brown-dark: #3d2b1f;
  --brown-mid: #6b4226;
  --brown-light: #a0693a;
  --brown-warm: #c8956c;
  --cream: #fdf6ee;
  --cream-dark: #f0e8da;
  --sage: #7a8c6e;
  --sage-light: #a5b898;
  --sage-pale: #dde6d5;
  --white: #ffffff;
  --text-dark: #2c1e14;
  --text-mid: #5a4033;
  --text-light: #8a7060;
  --border: #e0d5c5;
  --shadow: rgba(61, 43, 31, 0.12);
  --shadow-lg: rgba(61, 43, 31, 0.2);
  --max-w: 1200px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

html {
  overflow-x: hidden;
}

body {
  font-family: 'Nanum Gothic', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Typography === */
h1, h2, h3 {
  font-family: 'Nanum Gothic', sans-serif;
  line-height: 1.3;
}

.section-label {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* === Layout === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 2rem;
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown-mid);
  color: var(--white);
  border: 2px solid var(--brown-mid);
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--brown-mid);
  border: 2px solid var(--brown-mid);
}
.btn-outline:hover {
  background: var(--brown-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
  border: 2px solid #FEE500;
}
.btn-kakao:hover {
  background: #F5DC00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,229,0,0.4);
}

.btn-naver {
  background: #03C75A;
  color: white;
  border: 2px solid #03C75A;
}
.btn-naver:hover {
  background: #02b050;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,199,90,0.35);
}

.btn-lg { height: 60px; padding: 0 2.5rem; font-size: 1.05rem; }

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#site-header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 90%, transparent 100%);
}

#site-header.scrolled,
#site-header:has(.nav-mobile.open) {
  background: rgba(253, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
}

#site-header:has(.nav-mobile.open) {
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: var(--transition);
}

#site-header.scrolled .nav-logo img,
#site-header:has(.nav-mobile.open) .nav-logo img {
  filter: none;
}

.nav-logo .logo-white {
  display: block;
}
.nav-logo .logo-dark {
  display: none;
}
#site-header.scrolled .nav-logo .logo-white,
#site-header:has(.nav-mobile.open) .nav-logo .logo-white {
  display: none;
}
#site-header.scrolled .nav-logo .logo-dark,
#site-header:has(.nav-mobile.open) .nav-logo .logo-dark {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brown-warm);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

#site-header.scrolled .nav-menu a {
  color: var(--text-dark);
  text-shadow: none;
  font-size: 1.1rem;
}

.nav-cta {
  background: var(--brown-mid);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown-dark); opacity: 1; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

#site-header.scrolled .nav-hamburger span,
#site-header:has(.nav-mobile.open) .nav-hamburger span {
  background: var(--brown-dark);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgb(253, 246, 238);
  box-shadow: 0 8px 32px var(--shadow-lg);
  padding: 1.5rem;
  z-index: 999;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--brown-mid);
  color: white !important;
  border-radius: 4px;
  border-bottom: none !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,43,31,0.3) 0%,
    rgba(107,66,38,0.15) 50%,
    rgba(122,140,110,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

/* Slide text animation */
.hero-swiper .swiper-slide .hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-swiper .swiper-slide-active .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-swiper .swiper-slide-active .hero-content > *:nth-child(1) { transition-delay: 0.2s; }
.hero-swiper .swiper-slide-active .hero-content > *:nth-child(2) { transition-delay: 0.4s; }
.hero-swiper .swiper-slide-active .hero-content > *:nth-child(3) { transition-delay: 0.6s; }
.hero-swiper .swiper-slide-active .hero-content > *:nth-child(4) { transition-delay: 0.8s; }

/* Hero Pagination - Line Style */
.hero-pagination {
  position: absolute;
  top: auto !important;
  bottom: 0.8rem !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet:hover {
  background: rgba(255,255,255,0.6);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: white;
  width: 56px;
  transform: none;
}

/* Hero Navigation Arrows */
.hero-button-prev,
.hero-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-button-prev:hover,
.hero-button-next:hover {
  background: rgba(255,255,255,0.3);
}

.hero-button-prev { left: 1.5rem; }
.hero-button-next { right: 1.5rem; }

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown-warm);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2.5px solid white;
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

.scroll-wheel {
  width: 4px;
  height: 9px;
  background: white;
  border-radius: 2px;
  margin-top: 9px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-line {
  width: 1.5px;
  height: 28px;
  background: rgba(255,255,255,0.7);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   WELCOME / INTRO SECTION
   ============================================= */
.welcome {
  background: var(--white);
  padding: 6rem 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-image {
  position: relative;
}

.welcome-image .img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.welcome-image .img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid white;
  box-shadow: 0 10px 30px var(--shadow-lg);
}

.welcome-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--brown-mid);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.welcome-badge .num {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.welcome-badge .label {
  font-size: 0.75rem;
  opacity: 0.85;
}

.welcome-text .section-label { margin-bottom: 0.5rem; }

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =============================================
   ROOMS SECTION
   ============================================= */
.rooms-section { background: var(--cream); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-lg);
}

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

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

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

.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--brown-mid);
  color: white;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
}

.room-card-body {
  padding: 1.5rem;
}

.room-card-body h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--brown-dark);
}

.room-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.room-meta span { display: flex; align-items: center; gap: 0.35rem; }

.room-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.room-price .price {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-mid);
}

.room-price .price span {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* =============================================
   FACILITIES SECTION
   ============================================= */
.facilities { background: var(--cream-dark); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.facility-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.facility-card:hover {
  box-shadow: 0 12px 36px var(--shadow-lg);
  transform: translateY(-4px);
}

.facility-img {
  height: 260px;
  overflow: hidden;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-card:hover .facility-img img { transform: scale(1.06); }

.facility-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.facility-body h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--brown-dark);
}

.facility-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.facility-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.facility-tag {
  background: var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* =============================================
   RESERVATION CTA SECTION
   ============================================= */
.reservation-cta {
  background:
    linear-gradient(135deg, rgba(61,43,31,0.88) 0%, rgba(107,66,38,0.82) 60%, rgba(122,140,110,0.75) 100%),
    url('../images/pension-overview.jpg') center/cover no-repeat;
  padding: 6rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.reservation-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 149, 108, 0.2) 0%, transparent 70%);
}

.reservation-cta .container { position: relative; z-index: 1; }

.reservation-cta .section-label { color: var(--brown-warm); }

.reservation-cta .section-title {
  color: white;
  margin-bottom: 1rem;
}

.reservation-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-info {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.cta-info-item i { color: var(--brown-warm); }

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.review-quote {
  font-size: 2.5rem;
  font-family: 'Nanum Gothic', sans-serif;
  color: var(--brown-warm);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer { font-size: 0.85rem; font-weight: 600; color: var(--brown-dark); }
.review-date { font-size: 0.78rem; color: var(--text-light); }

.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 0.5rem; }

.review-source {
  font-size: 0.72rem;
  background: #03C75A;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* =============================================
   LOCATION PREVIEW SECTION
   ============================================= */
.location-section { background: #ffffff; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-lg);
  height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brown-dark);
}

.location-list { display: flex; flex-direction: column; gap: 1rem; }

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.location-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}

.location-item-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brown-warm);
  color: white;
}

.footer-col h4 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--brown-warm); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--brown-warm);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 2;
}

.footer-legal strong {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
}

.footer-links-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-links-bottom a:hover { color: var(--brown-warm); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.75) 0%, rgba(122,140,110,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.page-hero-content .section-label { color: var(--brown-warm); }

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--brown-warm); }
.breadcrumb .sep { opacity: 0.4; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.about-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

.about-checkin {
  background: var(--cream-dark);
}

.checkin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.checkin-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
}

.checkin-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--sage);
}

.checkin-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkin-card .time {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-mid);
}

.checkin-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.nearby-section { background: var(--white); }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nearby-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 240px;
  box-shadow: 0 4px 16px var(--shadow);
}

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

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

.nearby-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.nearby-overlay h4 {
  color: white;
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.1rem;
}

.nearby-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}

/* =============================================
   ROOMS PAGE
   ============================================= */
.rooms-list { background: var(--cream); }

.room-list-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 4px 24px var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.room-list-card:hover {
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: translateY(-4px);
}

.room-list-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.room-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-list-card:hover .room-list-img img { transform: scale(1.06); }

.room-list-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-list-body h2 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.7rem;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}

.room-list-body .desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.room-specs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.room-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.room-spec i { color: var(--sage); }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.amenity-tag {
  background: var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.room-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-pricing .price-block .label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.room-pricing .price-block .amount {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-mid);
}

.room-pricing .price-block .amount span {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Room Detail */
.room-detail-hero {
  height: 70vh;
  min-height: 500px;
}

.room-detail-body {
  background: var(--cream);
  padding: 4rem 0;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.room-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 1.5rem;
}

.room-info-card h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.amenity-item i { color: var(--sage); font-size: 0.9rem; }

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px var(--shadow-lg);
  border: 2px solid var(--brown-warm);
}

.booking-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.booking-price .from { font-size: 0.8rem; color: var(--text-light); }
.booking-price .amount {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-mid);
}
.booking-price .per { font-size: 0.8rem; color: var(--text-light); }

.booking-card .btn { width: 100%; margin-bottom: 0.75rem; }

.booking-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

/* =============================================
   FACILITIES PAGE
   ============================================= */
.facilities-detail { background: var(--white); }

.facilities-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.facilities-detail-grid:nth-child(even) { direction: rtl; }
.facilities-detail-grid:nth-child(even) > * { direction: ltr; }

.facility-detail-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.facility-detail-imgs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.facility-detail-imgs img:first-child {
  grid-column: span 2;
  height: 260px;
}

.facility-detail-text .section-label { margin-bottom: 0.5rem; }

.facility-detail-list {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.facility-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.facility-detail-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   RESERVATION PAGE
   ============================================= */
.reservation-page { background: var(--cream); }

.reservation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.reservation-option {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.reservation-option:hover {
  border-color: var(--brown-warm);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-lg);
}

.reservation-option.featured {
  border-color: var(--brown-mid);
  position: relative;
}

.option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-mid);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.option-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.option-icon.naver { background: rgba(3,199,90,0.12); color: #03C75A; }
.option-icon.kakao { background: rgba(254,229,0,0.2); color: #3A1D1D; }
.option-icon.phone { background: var(--sage-pale); color: var(--sage); }

.reservation-option h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--brown-dark);
}

.reservation-option p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.reservation-form-section {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.reservation-form-section h3 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brown-dark);
}

.reservation-form-section p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group textarea {
  height: 120px;
  padding: 0.75rem 1rem;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-warm);
  background: var(--white);
}

.form-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--brown-warm);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* =============================================
   NOTICE PAGE
   ============================================= */
.notice-page { background: var(--cream); }

.notice-list { max-width: 800px; margin: 0 auto; }

.notice-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.notice-item:hover {
  box-shadow: 0 6px 24px var(--shadow-lg);
  transform: translateX(4px);
}

.notice-type {
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
}

.notice-type.notice { background: var(--sage-pale); color: var(--sage); }
.notice-type.event { background: rgba(200,149,108,0.2); color: var(--brown-mid); }

.notice-title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-dark);
}

.notice-date {
  font-size: 0.8rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* =============================================
   PHOTO ALBUM
   ============================================= */
.photo-album { background: var(--white); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img { transform: scale(1.08); }

.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
}

.photo-item:hover .photo-item-overlay {
  background: rgba(61,43,31,0.4);
  opacity: 1;
}

/* =============================================
   LOCATION PAGE
   ============================================= */
.location-page { background: var(--cream); }

.location-full-map {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-lg);
  margin-bottom: 3rem;
}

.location-full-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.transport-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.transport-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.transport-card h4 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--brown-dark);
}

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

/* =============================================
   AOS Override
   ============================================= */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .checkin-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-button-prev, .hero-button-next { display: none; }
  .hero-pagination { bottom: 0.5rem !important; }

  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-image .img-accent { display: none; }
  .welcome-image .img-main { height: 300px; }
  .welcome-badge { left: 1rem; }
  .welcome-features { grid-template-columns: 1fr 1fr; }

  .rooms-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .facility-card { grid-template-columns: 1fr; }
  .facility-img { height: 200px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }

  .reservation-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form-section { padding: 1.75rem; }

  .nearby-grid { grid-template-columns: 1fr 1fr; }

  .transport-grid { grid-template-columns: 1fr; }

  .room-list-card { grid-template-columns: 1fr; }
  .room-list-img { height: 240px; }

  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }

  .photo-grid { grid-template-columns: 1fr 1fr; }

  .about-story-grid { grid-template-columns: 1fr; }
  .facilities-detail-grid { grid-template-columns: 1fr; }
  .facilities-detail-grid:nth-child(even) { direction: ltr; }

  .checkin-grid { grid-template-columns: 1fr 1fr; }

  .about-images img { height: 160px; }
  .about-images img:first-child { height: 200px; }
}

@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .welcome-features { grid-template-columns: 1fr; }
  .checkin-grid { grid-template-columns: 1fr 1fr; }
  .cta-info { gap: 1.5rem; }
}
