/* ========================================
   STELLAR Resort Page - Luxury Style
   ======================================== */

/* Override page-body background for resort */
.resort-page .page-header { display: none; }
.resort-page .page-body {
  background: #faf6ef;
  padding: 0;
  min-height: auto;
}
.resort-page .page-body .content-wrap {
  max-width: 100%;
  padding: 0;
}

/* Typography */
.resort-serif {
  font-family: Georgia, "Playfair Display", "Times New Roman", "Noto Serif JP", serif;
}

/* ========================================
   Hero
   ======================================== */
.resort-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
}
.resort-hero__bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #5a8a4a 0%, #7aaa5a 20%, #8aba6a 35%, #a0c880 50%, #90b070 65%, #f0f0e0 85%, #faf6ef 100%);
  position: relative;
}
.resort-hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, #6090c0 0%, #80b0d8 40%, #c8dde8 70%, transparent 100%);
}
.resort-hero__bg::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 10%;
  right: 10%;
  height: 25%;
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(240,245,250,.6) 40%, transparent 100%);
  border-radius: 50% 50% 0 0;
  filter: blur(20px);
}
.resort-hero__mountains {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 80px;
  opacity: .15;
  pointer-events: none;
}
.resort-hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}
.resort-hero__logo-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border: 2px solid rgba(197,165,90,.4);
}
.resort-hero__logo-text {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: .15em;
  color: #5a4a3a;
  font-weight: bold;
}
.resort-hero__logo-sub {
  font-size: 10px;
  color: #8a7a6a;
  letter-spacing: .1em;
  margin-top: 2px;
}
.resort-hero__logo-icon {
  font-size: 28px;
  margin-bottom: 4px;
  color: #5a7a4a;
}

/* ========================================
   Resort Property Section
   ======================================== */
.resort-property {
  padding: 80px 0;
  background: #faf6ef;
  position: relative;
}
.resort-property:nth-child(even) {
  background: #f5efe5;
}
.resort-property__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.resort-property__header {
  text-align: center;
  margin-bottom: 50px;
}
.resort-property__jp-title {
  font-size: 14px;
  color: #8a7a6a;
  letter-spacing: .15em;
  margin-bottom: 10px;
}
.resort-property__jp-sub {
  font-size: 12px;
  color: #a09080;
  margin-bottom: 8px;
}
.resort-property__en-title {
  font-family: Georgia, "Playfair Display", "Times New Roman", serif;
  font-size: 42px;
  font-weight: normal;
  color: #4a3a2a;
  letter-spacing: .05em;
  line-height: 1.2;
  margin-bottom: 15px;
}
.resort-property__deco {
  display: inline-block;
  width: 80px;
  height: 1px;
  background: #c5a55a;
  position: relative;
  margin-top: 10px;
}
.resort-property__deco::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #c5a55a;
  border-bottom: 1px solid #c5a55a;
  transform: rotate(-45deg);
}

/* Hero Image within property */
.resort-property__hero-img {
  margin-bottom: 60px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.resort-property__hero-img .placeholder-img {
  min-height: 400px;
  font-size: 16px;
}

/* ========================================
   Resort Section (sub-sections)
   ======================================== */
.resort-section {
  margin-bottom: 70px;
}
.resort-section__title {
  font-family: Georgia, "Playfair Display", "Times New Roman", serif;
  font-size: 32px;
  font-weight: normal;
  color: #4a3a2a;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .05em;
}
.resort-section__subtitle {
  font-size: 12px;
  color: #a09080;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: .08em;
}
.resort-section__desc {
  font-size: 13px;
  color: #7a6a5a;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Image layouts */
.resort-section__img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.resort-section__img .placeholder-img {
  min-height: 300px;
}

.resort-section__grid {
  display: grid;
  gap: 15px;
}
.resort-section__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.resort-section__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.resort-section__grid .placeholder-img {
  min-height: 220px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* ========================================
   Resort Location Map
   ======================================== */
.resort-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.resort-location__map {
  width: 200px;
  height: 200px;
  position: relative;
}
.resort-location__map svg {
  width: 100%;
  height: 100%;
}
.resort-location__info {
  text-align: left;
}
.resort-location__info-title {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 18px;
  color: #4a3a2a;
  margin-bottom: 8px;
}
.resort-location__info-text {
  font-size: 13px;
  color: #8a7a6a;
  line-height: 1.8;
}

/* ========================================
   Resort CTA
   ======================================== */
.resort-cta {
  text-align: center;
  margin-top: 40px;
}
.resort-cta__btn {
  display: inline-block;
  padding: 14px 50px;
  background: linear-gradient(180deg, #d4a843, #b8860b);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(184,134,11,.3);
}
.resort-cta__btn:hover {
  box-shadow: 0 4px 16px rgba(184,134,11,.45);
  transform: translateY(-1px);
  color: #fff;
}

/* ========================================
   Resort Divider
   ======================================== */
.resort-divider {
  text-align: center;
  padding: 40px 0;
}
.resort-divider__line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #c5a55a;
}

/* ========================================
   Resort Bottom Banner
   ======================================== */
.resort-bottom-banner {
  padding: 60px 0;
  background: #f0e8d8;
  text-align: center;
}
.resort-bottom-banner__title {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 28px;
  color: #4a3a2a;
  margin-bottom: 15px;
}
.resort-bottom-banner__text {
  font-size: 13px;
  color: #8a7a6a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 800px) {
  .resort-hero {
    height: 50vh;
    min-height: 300px;
  }
  .resort-hero__logo-badge {
    width: 110px;
    height: 110px;
  }
  .resort-hero__logo-text {
    font-size: 12px;
  }
  .resort-property {
    padding: 50px 0;
  }
  .resort-property__inner {
    padding: 0 20px;
  }
  .resort-property__en-title {
    font-size: 30px;
  }
  .resort-property__hero-img .placeholder-img {
    min-height: 250px;
  }
  .resort-section__title {
    font-size: 26px;
  }
  .resort-section__grid--2col {
    grid-template-columns: 1fr;
  }
  .resort-section__grid--3col {
    grid-template-columns: 1fr;
  }
  .resort-section__img .placeholder-img {
    min-height: 200px;
  }
  .resort-location {
    flex-direction: column;
    gap: 20px;
  }
}
/* ========================================
   Image overlays & animations
   ======================================== */
.resort-hero__bg {
  transition: transform .1s linear;
}
.resort-hero__bg.has-bg-img {
  background-size: cover;
  background-position: center;
}
.resort-hero__bg.has-bg-img::before,
.resort-hero__bg.has-bg-img::after {
  display: none;
}
.resort-hero__bg.has-bg-img .resort-hero__mountains {
  display: none;
}

/* Fade-in for resort hero logo */
.resort-hero__logo {
  animation: resortFadeIn 1.2s ease .3s both;
}
@keyframes resortFadeIn {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Image hover zoom */
.resort-section__img {
  overflow: hidden;
}
.resort-property__hero-img {
  overflow: hidden;
}

@media (max-width: 480px) {
  .resort-hero {
    height: 40vh;
    min-height: 250px;
  }
  .resort-property__en-title {
    font-size: 24px;
  }
  .resort-section__title {
    font-size: 22px;
  }
  .resort-section__grid .placeholder-img {
    min-height: 160px;
  }
}
