/* ==============================================
   HEADER & HERO - Rebuild theo design mockup
   ============================================== */

/* ---- HEADER-WRAP: sticky wrapper â€” slides up to hide topbar, site-header sticks ---- */
/* When user scrolls, wrapper scrolls up by topbar height, revealing site-header at top */
.header-wrap {
  position: sticky;
  top: calc(-1 * var(--topbar-h, 44px)); /* negative = slide topbar out of view */
  z-index: 10000;
  width: 100%;
}

/* ---- TOPBAR: normal flow inside wrapper ---- */
.topbar {
  background: #fff;
  border-bottom: 1px solid #ede8f5;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Phone pill */
.topbar__phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b2361;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .25s;
}
.topbar__phone-pill:hover { background: #3c2e71; color: #fff; }
/* Slogan center */
.topbar__slogan {
  flex: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3b2361;
}
/* Right icons */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__hours {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #3b2361;
}
.topbar__sep {
  margin: 0 10px;
  color: #3b2361;
  font-weight: 400;
}
.topbar__days, .topbar__time {
  display: flex;
  align-items: center;
}
.topbar__social {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s;
}
.topbar__social:hover { color: #3c2e71; }

/* SITE HEADER: relative inside sticky wrapper â€” sticks at top when topbar slides away */
.site-header {
  background: #3c2e71;
  height: 50px;
  position: relative;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,10,46,.35);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
/* Logo */
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__logo-icon { flex-shrink: 0; }
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: .06em;
}
.header__logo-sub {
  font-size: .8rem;
  color: #ffffff;
  letter-spacing: .08em;
}
.header__logo-icon svg path {
  fill: #ffffff !important;
}
.header__logo-icon svg {
  width: 36px;
  height: 36px;
}
/* Custom logo image */
.header__logo .custom-logo { height: 50px; width: auto; max-height: none; transform: scale(2.8); transform-origin: center; }
@media (max-width: 1024px) {
  .header__logo .custom-logo { height: 44px !important; transform: scale(2); }
}
/* Nav */
.header__nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.header__nav .nav-menu > li > a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  border-radius: 6px;
  position: relative;
  transition: color .25s;
}
.header__nav .nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: #f0cc70;
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}
.header__nav .nav-menu li a:hover { color: #f0cc70; }
.header__nav .nav-menu li a:hover::after,
.header__nav .nav-menu li.current-menu-item > a::after { transform: scaleX(1); }
/* Booking button gold */
.btn-booking-gold {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  background: linear-gradient(135deg, #d4a843, #f0cc70);
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(212,168,67,.4);
  transition: all .25s;
}
.btn-booking-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,168,67,.55);
  color: #000000;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .3s;
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  background: #1a0a2e;
  display: flex;          /* sidebar + slider side by side */
  align-items: stretch;
  padding: 0;
}
/* Slider wrapper */
.hero-slider {
  position: relative;
  overflow: hidden;
  flex: 1;               /* slider takes remaining space */
  min-width: 0;
}
/* Slider track */
.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 56vw;
  min-height: 460px;
  max-height: 600px;
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,10,46,.55) 0%, rgba(26,10,46,.2) 50%, transparent 70%);
}

/* Logo center-top in slide */
.hero-slide__logo {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.hero-slide__logo-img { height: 56px; width: auto; }
.hero-slide__logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-slide__logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-slide__logo-text strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1;
}
.hero-slide__logo-text span {
  font-size: .65rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .08em;
}

/* Wider container specifically for hero to push content outward */
.hero-container { max-width: 1300px !important; }

/* Text content - vertically centered, relative to .container */
.hero-slide__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;           /* Indent from the left edge of the 1200px container */
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
.hero-slide__title { line-height: 1 }
.hero-slide__gold {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: #d4a843;
  font-style: italic;
  font-weight: normal;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(212,168,67,.5);
}
.hero-slide__bold {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: #fff;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .08em;
  line-height: 1.0;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-slide__sub {
  display: block;
  font-size: clamp(.82rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.9);
  letter-spacing: .25em;
  font-weight: 500;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Arrows Wrapper */
.hero-arrows-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
  z-index: 6;
  pointer-events: none; /* Let clicks pass through except on arrows */
}

/* Arrows - naked chevrons matching design mockup */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  width: 50px; height: 50px;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  padding: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  pointer-events: auto; /* Re-enable clicks */
}
.hero-arrow svg {
  width: 32px; height: 32px;
  stroke-width: 3;
}
.hero-arrow:hover { color: #d4a843; transform: translateY(-50%) scale(1.1); }
/* Prev arrow: just outside the text */
.hero-arrow--prev { left: 100px; }
/* Next arrow: right edge of container */
.hero-arrow--next { right: 100px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero-dot.active { background: #d4a843; width: 24px; border-radius: 4px; }

/* ---- SIDEBAR ICONS ---- */
.hero-sidebar {
  position: sticky;
  top: 60px;           /* stick below sticky header */
  align-self: flex-start; /* don't stretch full height */
  flex-shrink: 0;
  width: 68px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #3c2e71;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 6px;
  color: rgba(255,255,255,.75);
  font-size: .55rem;
  letter-spacing: .02em;
  font-weight: 500;
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(255,255,255,.07);
  width: 100%;
  text-decoration: none;
  text-align: center;
}
.hero-sidebar__item:last-child { border-bottom: none; }
.hero-sidebar__item:hover { color: #d4a843; background: rgba(255,255,255,.06); }
.hero-sidebar__item svg { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .topbar { display: none !important; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .hero-sidebar { display: none; }
  .hero-slide__content { left: 24px; }
  .hero-arrow--prev { left: 10px; }
  .hero-arrow--next { right: 10px; }
  .header__inner { position: relative; justify-content: center; min-height: 48px; }
  .header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .header__actions { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); }
  .header__actions .btn-booking-gold { display: none; }
  /* Arrow buttons smaller on mobile */
  .hero-arrow {
    width: 30px !important;
    height: 30px !important;
  }
  .hero-arrow svg {
    width: 15px !important;
    height: 15px !important;
  }
  /* Header on mobile: smaller height */
  .site-header {
    height: 64px;
    transition: box-shadow .3s ease;
  }
  .site-header.scrolled {
    box-shadow: 0 2px 12px rgba(74,30,110,.3);
  }
  .header__inner {
    min-height: 64px !important;
  }
  .header__logo .custom-logo {
    height: 44px !important;
    transform: scale(4) !important;
    transform-origin: center;
  }
}
@media (max-width: 768px) {
  .topbar__slogan { display: none; }
  .hero-slide__content { left: 24px; bottom: 50px; }
  .hero-slide { min-height: 420px; }
  .site-header { height: 64px; }
}
@media (max-width: 480px) {
  .hero-slide { min-height: 300px; }
  .hero-slide__gold, .hero-slide__bold { font-size: 2rem; }
}

/* Mobile menu stays as-is from main.css */

