/* ===================== Base ===================== */
:root {
  --accent: #21AEDD;
  --accent-light: #5cc5e8;
  --accent-dark: #1888ab;
  --accent-text: #4DB9CA;
  --black: #000000;
  --charcoal: #000000;
  --charcoal-2: #0a0a0a;
  --text-light: #ffffff;
  --text-muted: #ffffff;
  --serif: 'Gilroy', 'Poppins', sans-serif;
  --sans: 'Gilroy', 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 800;
  font-family: var(--serif); margin: 0 0 .5em; color: var(--text-light);
}

a { color: var(--accent-text); }

b, strong { font-weight: 800; }

.text-accent { color: var(--accent-text); }

img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--accent-text);
  margin-bottom: .8rem;
}

/* ===================== Return to Summit Buttons ===================== */
.back-to-summit {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 100;
  display: inline-block;
  padding: .65rem 1.2rem;
  border: 1.5px solid var(--accent-text);
  border-radius: 8px;
  color: var(--accent-text);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  transition: background .3s ease, color .3s ease;
}

.back-to-summit:hover {
  background: var(--accent-text);
  color: var(--black);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.hero-banner {
  width: 100%;
  max-width: 936px;
}

/* ===================== Sections ===================== */
.section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse .col-media { order: 2; }
.two-col.reverse .col-text { order: 1; }

.col-media img.hotel-image {
  border-radius: 14px;
}

.feature-list-centered {
  align-items: center;
  margin-top: 1.5rem;
}

.feature-list-centered li {
  justify-content: center;
}

.gold-section .col-media img.hotel-image {
  border: 1px solid rgba(33,174,221,0.35);
}

.hotel-section .two-col {
  align-items: flex-start;
}

.col-text h2 { font-size: 2.2rem; }

.col-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  a { text-decoration: underline }
  a:hover { color: #fff; }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--text-light);
  font-weight: 500;
}

.feature-list li i { color: var(--accent-text); width: 1.2em; text-align: center; }

.hotel-section { background: var(--black); padding-top: 3rem; padding-bottom: 3rem; }

/* ===================== Rooms Section ===================== */
.rooms-section { background: var(--black); padding-top: 3rem; padding-bottom: 3rem; }

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  a { text-decoration: underline }
  a:hover { color: #fff; }

}

.section-heading h2 { font-size: 2.3rem; }

.section-lead {
  color: var(--text-muted);
}

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

.room-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(33,174,221,0.25);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.room-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-img.active { opacity: 1; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background .3s ease;
}

.carousel-dots .dot.active { background: var(--accent); }

.room-body { padding: 1.8rem; }

.room-body h3 {
  font-size: 1.35rem;
  color: var(--text-light);
}

.room-body p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.amenities li {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 15px;
}

.amenities li i { color: var(--accent-text); width: 1.1em; text-align: center; }

.rooms-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  padding: 1.5rem 2rem;
  border: 1px dashed rgba(33,174,221,0.4);
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  a { text-decoration: underline }
  a:hover { color: #fff; }

}

.rooms-note i { color: var(--accent-text); margin-right: .5rem; }

.rooms-note a { color: var(--accent-text); font-weight: 600; }

/* ===================== Gold Room Section ===================== */
.gold-section {
  background: var(--black);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gold-heading {
  text-align: left;
  font-size: 2.2rem;
  margin-top: .3rem;
}

.gold-media {
  width: 100%;
  margin: 2rem 0 3rem;
}

.gold-room-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.gold-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gold-columns .col-text p {
  margin-top: 0;
}

.gold-columns .feature-list {
  margin-top: 0;
}

/* ===================== Footer ===================== */
.site-footer {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--black);
}

.footer-logo {
  max-width: 400px;
  margin: 0 auto 1.2rem;
  opacity: .9;
}

.site-footer p {
  color: var(--text-muted);
  margin: .3rem 0;
}

.footer-contact a { color: var(--accent-text); }
.footer-contact a:hover { color: #fff; }

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse .col-media,
  .two-col.reverse .col-text { order: initial; }
  .rooms-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.2rem; }
  .col-text h2, .section-heading h2 { font-size: 1.8rem; }
  .gold-columns { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 500px) {
  .amenities { grid-template-columns: 1fr; }
  .hero { min-height: 50vh; padding: 3rem 1rem; }
  .gold-heading { white-space: normal; font-size: 1.6rem; }
  .back-to-summit { padding: .5rem .9rem; font-size: .75rem; top: .8rem; left: .8rem; }
}
