:root{
  --bg:#0b0f14;
  --txt:#f5f7fb;
  --muted:rgba(245,247,251,.72);
  --line:rgba(245,247,251,.18);
  --btn:rgba(245,247,251,.10);
  --btnHover:rgba(245,247,251,.16);
}

/* Wrapper */
.luxera-hero.hero{
  position:relative;
    z-index: 0;
  height:100vh;
  min-height:560px;
  overflow:hidden;
  color:var(--txt);
  background:var(--bg);
}

/* Slides */
.luxera-hero .slides{position:absolute;inset:0}

.luxera-hero .slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .9s ease;
}
.luxera-hero .slide.is-active{
  opacity:1;
  pointer-events:auto;
}

/* Background + Ken Burns */
.luxera-hero .bg{
  position:absolute;
  inset:-2%;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  transition:transform 5.2s ease;
  filter:saturate(1.05) contrast(1.05);
}
.luxera-hero .slide.is-active .bg{transform:scale(1.14)}

/* Overlay */
.luxera-hero .overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 50% 40%, rgba(0,0,0,.18), rgba(0,0,0,.62)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
}

/* Centered content */
.luxera-hero .content{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.luxera-hero .container{
  width:min(1180px,calc(100% - 48px));
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* Typography */
.luxera-hero .kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  color:var(--muted);
  margin-bottom:12px;
}
.luxera-hero .kicker::before{
  content:"";
  width:36px;
  height:1px;
  background:var(--line);
}

.luxera-hero .h1{
  font-size:clamp(40px,4.2vw,74px);
  line-height:1.05;
  margin:0 0 14px;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.luxera-hero .lead{
  max-width:56ch;
  color:var(--muted);
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.6;
  margin:0 0 22px;
}

/* Buttons */
.luxera-hero .actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.luxera-hero .btn{
  border:1px solid var(--line);
  background:var(--btn);
  color:var(--txt);
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  backdrop-filter:blur(10px);
  text-decoration:none;
  font-weight:600;
  transition:background .18s ease, transform .18s ease;
  display:inline-flex;
  align-items:center;
}
.luxera-hero .btn:hover{background:var(--btnHover);transform:translateY(-1px)}
.luxera-hero .btn.primary{
  background:rgba(245,247,251,.92);
  color:#0b0f14;
  border:0;
}

/* Reveal */
.luxera-hero .reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .9s ease;
  will-change:opacity,transform;
}
.luxera-hero .slide.is-active .reveal{
  opacity:1;
  transform:none;
}
.luxera-hero .d1{transition-delay:.12s}
.luxera-hero .d2{transition-delay:.24s}
.luxera-hero .d3{transition-delay:.38s}

/* Arrows */
.luxera-hero .nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:30;
  width:auto;
  height:auto;
  border-radius:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  backdrop-filter:none;
  #transition:background .2s ease, transform .2s ease;
}
.luxera-hero .nav-arrow:hover{
  background:rgba(10,14,20,.65);
  transform:translateY(calc(-50% - 1px));
}
.luxera-hero .nav-prev{left:28px}
.luxera-hero .nav-next{right:28px}

/* Dots */
.luxera-hero .controls{
  position:absolute;
  left:0; right:0;
  bottom:22px;
  z-index:25;
  height: auto;
  padding: 0;
  line-height: 0;
}
.luxera-hero .dots{
  display:flex;
  justify-content:center;
  gap:10px;
  height: auto;
  padding: 0;
  line-height: 0;
}
.luxera-hero .dot{
  width:34px;
  height:3px;
  border-radius:999px;
  background:rgba(255,255,255,.25);
  border:0;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}
.luxera-hero .dot[aria-current="true"]{
  background:#fff;
  transform:scaleX(1.06);
}

/* Mobile */
@media (max-width:520px){
  .luxera-hero .nav-prev{left:14px}
  .luxera-hero .nav-next{right:14px}
  .luxera-hero .nav-arrow{width:44px;height:44px;font-size:24px}
}

/* Font setup */
.sliderfont2 {
  font-family: "Cormorant Garamond", Garamond, serif !important;

  color: #ffffff !important;
  font-size: 64px !important;
}
