/* ========== AURORA NORDIC LUXURY ========== */
:root {
  --bg-main: #08141F;
  --bg-secondary: #102535;
  --card-bg: rgba(255,255,255,0.08);
  --aurora: #63E6D8;
  --gold: #D7B47A;
  --text: #F5F7FA;
  --text-soft: #C8D2DA;
  --border: rgba(255,255,255,0.14);
  --hover-glow: rgba(99,230,216,0.35);
  --serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --serif-alt: 'Cormorant Garamond', serif;
  --sans: 'Inter', 'Manrope', sans-serif;
  --maxw: 1450px;
  --radius: 14px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .3s ease; }

/* ========== AURORA BACKGROUND ========== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(99,230,216,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(215,180,122,0.08), transparent 50%),
    radial-gradient(ellipse at 60% 30%, rgba(99,230,216,0.06), transparent 60%),
    var(--bg-main);
  animation: auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  100% { background-position: 30% 20%, 70% 80%, 60% 40%; }
}

/* ========== SIDEBAR ========== */
.sidebar {
  position: fixed;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 72px;
  background: rgba(16,37,53,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 24px 0;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sidebar-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora), var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif);
  color: var(--bg-main);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}
.nav-item {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--text-soft);
}
.nav-item svg { width: 20px; height: 20px; }
.nav-item:hover {
  color: var(--aurora);
  background: var(--card-bg);
  box-shadow: 0 0 20px var(--hover-glow);
}
.nav-item.active {
  color: var(--gold);
  background: rgba(215,180,122,0.08);
}
.nav-item.active::before {
  content:'';
  position: absolute;
  left: -10px;
  top: 50%; transform: translateY(-50%);
  width: 3px; height: 24px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-item[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 56px;
  background: var(--bg-secondary);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid var(--border);
}

/* ========== MOBILE HEADER ========== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px 24px;
  background: rgba(8,20,31,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  align-items: center;
  justify-content: space-between;
}
.mobile-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--aurora), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hamburger {
  background: none; border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,20,31,0.98);
  backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.close-menu {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--text);
  font-size: 2.5rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex; flex-direction: column;
  gap: 24px; text-align: center;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--aurora); }

/* ========== MAIN ========== */
.main-content {
  margin-left: 110px;
  max-width: var(--maxw);
  padding-right: 24px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,31,0.55) 0%, rgba(8,20,31,0.85) 100%);
}
.aurora-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%; height: 60%;
  background: radial-gradient(ellipse, rgba(99,230,216,0.35), transparent 70%);
  filter: blur(60px);
  animation: auroraDance 12s ease-in-out infinite alternate;
}
@keyframes auroraDance {
  0% { transform: translateX(-5%) translateY(0); opacity: .6; }
  100% { transform: translateX(10%) translateY(20px); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 80px 32px;
  animation: fadeUp 1s ease-out;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow.light { color: var(--aurora); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--aurora), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--aurora), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all .35s ease;
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--aurora), #4dc9bb);
  color: var(--bg-main);
  box-shadow: 0 10px 30px rgba(99,230,216,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), #b89863);
  color: var(--bg-main);
  box-shadow: 0 12px 40px rgba(215,180,122,0.45);
  transform: translateY(-3px);
}
.btn-secondary {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--aurora);
  color: var(--aurora);
  box-shadow: 0 0 30px var(--hover-glow);
  transform: translateY(-3px);
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 32px;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--aurora); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.section-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
}
.section-desc.light { color: rgba(245,247,250,0.85); }

/* ========== HOTELS GRID ========== */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1380px;
  margin: 0 auto;
}
.hotel-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: all .5s ease;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px var(--hover-glow);
  border-color: var(--aurora);
}
.hotel-image {
  position: relative;
  flex: 1;
  min-height: 280px;
  overflow: hidden;
}
.hotel-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.hotel-card:hover .hotel-image img { transform: scale(1.08); }
.vip-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(8,20,31,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hotel-overlay {
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(8,20,31,0.85));
}
.hotel-location {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aurora);
}
.hotel-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 10px 0 12px;
  font-weight: 500;
}
.hotel-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hotel-link {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hotel-link:hover { color: var(--aurora); }

/* ========== PARALLAX ========== */
.parallax-block {
  position: relative;
  min-height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.parallax-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(180deg, rgba(8,20,31,0.4), rgba(8,20,31,0.75));
  width: 100%; height: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* ========== SPA GRID ========== */
.spa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
}
.spa-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all .4s ease;
}
.spa-card:hover {
  transform: translateY(-6px);
  border-color: var(--aurora);
  box-shadow: 0 20px 50px var(--hover-glow);
}
.spa-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.spa-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.spa-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ========== SUITES ========== */
.suites-content, .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}
.suites-image img, .about-image img {
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  width: 100%;
}
.suite-features {
  list-style: none;
  margin: 28px 0;
}
.suite-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  position: relative;
  padding-left: 24px;
}
.suite-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ========== DINING ========== */
.dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
}
.dining-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all .4s ease;
}
.dining-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(215,180,122,0.2);
}
.dining-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .6s ease;
}
.dining-card:hover img { transform: scale(1.06); }
.dining-info {
  padding: 24px;
}
.dining-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.dining-info p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1380px;
  margin: 0 auto;
}
.contact-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
  background: var(--bg-secondary);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg);
}
.contact-form {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: all .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aurora);
  box-shadow: 0 0 20px var(--hover-glow);
}
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--bg-secondary); }
.contact-form textarea { resize: vertical; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1380px;
  margin: 64px auto 0;
  text-align: center;
}
.contact-info h4 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info p { color: var(--text-soft); }

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}
.page-hero.short { min-height: 40vh; }
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,31,0.55), rgba(8,20,31,0.9));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 32px 60px;
  max-width: 900px;
}

/* ========== LEGAL ========== */
.legal-section { padding-top: 140px; }
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 56px;
}
.legal-container h1 { margin-bottom: 12px; }
.legal-container h3 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 32px 0 12px;
}
.legal-container p {
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ========== FOOTER ========== */
.footer {
  margin-left: 110px;
  margin-top: 80px;
  padding: 80px 32px 32px;
  background:
    linear-gradient(180deg, rgba(16,37,53,0.6), rgba(8,20,31,0.95)),
    radial-gradient(ellipse at top, rgba(99,230,216,0.15), transparent 60%);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-radius: 32px 32px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1380px;
  margin: 0 auto 48px;
}
.footer-col h4, .footer-col h5 {
  font-family: var(--serif);
  margin-bottom: 18px;
  color: var(--text);
}
.footer-brand {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--aurora), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-col p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--aurora); }
.newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter input:focus {
  outline: none;
  border-color: var(--aurora);
}
.newsletter button {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--aurora), var(--gold));
  color: var(--bg-main);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all .3s;
}
.newsletter button:hover { transform: scale(1.05); }
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.socials a:hover {
  background: var(--aurora);
  color: var(--bg-main);
  border-color: var(--aurora);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .suites-content, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .sidebar { display: none; }
  .mobile-header { display: flex; }
  .main-content { margin-left: 0; padding: 76px 0 0; }
  .footer { margin-left: 0; }
  .section { padding: 80px 20px; }
  .hero-content { padding: 60px 24px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .legal-container { padding: 36px 24px; }
  .parallax-block { min-height: 50vh; }
  .parallax-overlay { min-height: 50vh; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hotel-name { font-size: 1.3rem; }
  .legal-container { padding: 28px 20px; }
}