
/* Hotel Premium HERO — no rounded corners, premium look */
.hpwh-hero{
  position: relative;
  width: 100%;
  min-height: var(--hpwh-height, 100vh);
  overflow: hidden;
  border-radius: 0 !important;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 72px 24px;
  box-sizing: border-box;
  background: #000;
}

.hpwh-hero__bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  transform: scale(1);
  will-change: transform;
}

.hpwh-hero.hpwh-zoom .hpwh-hero__bg{
  animation: hpwhKenBurns var(--hpwh-zoom-duration, 18s) ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes hpwhKenBurns{
  from{ transform: scale(1); }
  to{ transform: scale(var(--hpwh-zoom-scale, 1.08)); }
}

.hpwh-hero__overlay{
  position:absolute;
  inset:0;
  background: var(--hpwh-overlay, #000);
  opacity: var(--hpwh-overlay-opacity, 0.45);
  pointer-events:none;
}

.hpwh-hero__content{
  position: relative;
  z-index: 2;
  max-width: var(--hpwh-content-max, 1280px);
  width: 100%;
  text-align: center;
}

.hpwh-hero[style*="--hpwh-align:left"] .hpwh-hero__content{ text-align:left; }
.hpwh-hero[style*="--hpwh-align:right"] .hpwh-hero__content{ text-align:right; }

.hpwh-hero__eyebrow{
  color: var(--hpwh-eyebrow, #EDEDED);
  letter-spacing: .16em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hpwh-hero__title{
  color: var(--hpwh-title, #fff) !important;
  font-size: clamp(var(--hpwh-title-min, 44px), var(--hpwh-title-vw, 6vw), var(--hpwh-title-max, 96px));
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--hpwh-title-font, inherit);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 2px 28px rgba(0,0,0,.35);
  width: 100%;
  display:block;
  word-break: break-word;
}

.hpwh-hero__subtitle{
  color: var(--hpwh-subtitle, #C79A3B);
  font-size: clamp(var(--hpwh-title-min, 44px), var(--hpwh-title-vw, 6vw), var(--hpwh-title-max, 96px));
  line-height: 1.02;
  margin-top: 6px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 28px rgba(0,0,0,.35);
  width: 100%;
  display:block;
  word-break: break-word;
}

.hpwh-hero__desc{
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 680px;
}

.hpwh-hero__cta{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hpwh-hero[style*="--hpwh-align:left"] .hpwh-hero__cta{ justify-content:flex-start; }
.hpwh-hero[style*="--hpwh-align:right"] .hpwh-hero__cta{ justify-content:flex-end; }

.hpwh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  text-decoration:none !important;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
.hpwh-btn:hover{ transform: translateY(-1px); }

.hpwh-btn--primary{
  background: var(--hpwh-btn1bg, #C79A3B);
  color: var(--hpwh-btn1text, #111) !important;
  border: 1px solid var(--hpwh-btn1bg, #C79A3B);
}

.hpwh-btn--secondary{
  background: rgba(var(--hpwh-btn2bg-rgb, 255,255,255), var(--hpwh-btn2bg-a, .12));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--hpwh-btn2, #EDEDED) !important;
  border: 1px solid rgba(var(--hpwh-btn2bd-rgb, 255,255,255), var(--hpwh-btn2bd-a, .35));
}
.hpwh-btn--secondary:hover{
  background: rgba(var(--hpwh-btn2bg-rgb, 255,255,255), calc(var(--hpwh-btn2bg-a, .12) + .08));
}


/* Reveal animation (disabled automatically in VC Frontend editor by PHP) */
.hpwh-reveal .hpwh-hero__content{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.hpwh-reveal.hpwh-visible .hpwh-hero__content{
  opacity: 1;
  transform: none;
}

@media (max-width: 640px){
  .hpwh-hero{ padding: 56px 18px; }
}

/* Force colors against aggressive theme selectors (e.g., Jupiter) */
.hpwh-hero h1.hpwh-hero__title{color: var(--hpwh-title, #fff) !important;}
.hpwh-hero .hpwh-hero__eyebrow{color: var(--hpwh-eyebrow, #caa04b) !important;}
.hpwh-hero .hpwh-hero__subtitle{color: var(--hpwh-subtitle, #caa04b) !important;}

/* Luxury stagger reveal */
.hpwh-reveal .hpwh-stagger{opacity:0; transform: translateY(18px); filter: blur(6px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1), filter 1.1s ease;}
.hpwh-visible .hpwh-stagger{opacity:1; transform:none; filter: blur(0);}
.hpwh-visible .hpwh-stagger--1{transition-delay:.06s;}
.hpwh-visible .hpwh-stagger--2{transition-delay:.14s;}
.hpwh-visible .hpwh-stagger--3{transition-delay:.22s;}
.hpwh-visible .hpwh-stagger--4{transition-delay:.30s;}
.hpwh-visible .hpwh-stagger--5{transition-delay:.38s;}
