:root {
  --bg: #f6f4ef;
  --bg-soft: #efebe4;
  --text: #101418;
  --text-soft: #5f6b73;
  --line: rgba(16, 20, 24, 0.08);
  --shadow-lg: 0 30px 70px rgba(10, 16, 24, 0.14);
  --shadow-md: 0 18px 40px rgba(10, 16, 24, 0.10);
  --radius-xl: 28px;
  --header-height-desktop: 84px;
  --header-height-mobile: 68px;
  --header-shell-max: 1200px;
  --header-gutter-desktop: 32px;
  --header-gutter-mobile: 24px;
  --header-bg: rgba(8, 16, 24, 0.55);
  --header-border: rgba(255, 255, 255, 0.05);
  --header-solid-bg: rgba(8, 16, 24, 0.88);
  --header-solid-border: rgba(255, 255, 255, 0.06);
  --header-solid-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  --header-menu-bg: rgba(8, 16, 24, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #f8f6f1 0%, #f3efe8 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  color: rgba(16, 20, 24, 0.82);
}

.container {
  position: relative;
  z-index: 2;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  padding: 18px 0;
  background: transparent;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
  z-index: 999;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0);
  will-change: transform;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
}
/* =========================
   LOGO SYSTEM - MINIMAL DROP
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
}

.logo-badge {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin-top: 0;
}

.logo-mark {
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

.navbar.scrolled .logo-light {
  opacity: 0;
}

.navbar.scrolled .logo-dark {
  opacity: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  transform: translateY(0);
}

.logo-text .top {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #ffffff;
  transition: color 0.25s ease;
}

.logo-text .top sub {
  font-size: 0.5em;
  line-height: 0;
  position: relative;
  bottom: -0.08em;
}

.logo-text .bottom {
  margin-top: 3px;
  margin-left: 1px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.navbar.scrolled .logo-text .top {
  color: #111111;
}

.navbar.scrolled .logo-text .bottom {
  color: #5f6b73;
}

/* =========================
   NAV LINKS
========================= */

.navbar .nav-link {
  position: relative;
  margin-left: 24px;
  padding: 8px 0 !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    text-shadow 0.25s ease;
}

.navbar .nav-link:hover {
  color: #ffffff !important;
  opacity: 1;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transition: width 0.25s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: #111111 !important;
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
  color: #111111 !important;
}

/* =========================
   NAV TOGGLER
========================= */

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0.25rem 0.5rem;
}

.navbar-light .navbar-toggler-icon {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
  transition: filter 0.25s ease;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #09111b;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 6, 11, 0.38), rgba(3, 6, 11, 0.74)),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.38));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 110px;
  padding-bottom: 40px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero-title {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  color: #ffffff;
}

.hero-title span {
  display: block;
  font-size: 0.82em;
  opacity: 0.96;
}

.hero-sub {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.hero-link {
  display: inline-block;
  margin-top: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   SECTIONS
========================= */

.content-section {
  position: relative;
  padding: 120px 0;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.24));
}

.section-copy {
  max-width: 620px;
}

.section-kicker {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a756d;
}

.section-title {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  color: #11161b;
}

.section-lead {
  font-size: 20px;
  line-height: 1.75;
  color: rgba(16, 20, 24, 0.84);
}

/* =========================
   IMAGE TREATMENT
========================= */

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.sauna-image {
  width: 100%;
  border-radius: var(--radius-xl);
  transition: transform 0.7s ease;
}

.image-frame:hover .sauna-image {
  transform: scale(1.02);
}

/* =========================
   BRAND DROP BACKGROUND
========================= */

.brand-drop-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: url("../images/drop_1a.png") no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   GIFT CARD PANEL
========================= */

.gift-card-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 58px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.gift-copy {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
}

/* =========================
   FINAL CTA CARD
========================= */

.final-cta-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 62px 64px;
  background:
    linear-gradient(145deg, rgba(11, 20, 28, 0.92), rgba(28, 43, 55, 0.88));
  border-radius: 30px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(5, 10, 16, 0.26);
  overflow: hidden;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.final-cta-card .section-kicker {
  color: rgba(225, 235, 242, 0.72);
}

.final-cta-card .section-title {
  color: #ffffff;
}

.final-cta-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #11161b;
}

.footer-subtitle {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b747c;
}

.footer-copy {
  font-size: 13px;
  color: #6b747c;
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 991px) {
  .navbar {
    padding: 16px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(8, 16, 24, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .navbar.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.06);
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 10px 0 !important;
  }

  .logo {
    gap: 6px;
    min-height: 40px;
  }

  .logo-badge {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-top: 0;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-text .top {
    font-size: 26px;
  }

  .logo-text .bottom {
    margin-top: 3px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }


  .content-section {
    padding: 92px 0;
  }

  .hero-content {
    padding-top: 120px;
  }

  .gift-card-panel,
  .final-cta-card {
    padding: 40px 28px;
  }
}

/* =========================
   MOBILE HERO FALLBACK
========================= */

@media (max-width: 768px) {


  .hero-sub {
    font-size: 18px;
  }

  .section-lead,
  .gift-copy,
  .final-cta-card p {
    font-size: 17px;
  }

  .brand-drop-section::after {
    width: 320px;
    height: 320px;
    right: -100px;
    top: -20px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 88svh;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
  }

  .section-title {
    font-size: 38px;
  }

  .gift-card-panel,
  .final-cta-card {
    border-radius: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


.navbar, .navbar-collapse, .navbar-toggler { all: unset; }

/* =========================
   REUSABLE SITE HEADER COMPONENT
   Keep the HTML structure and these selectors consistent on future pages.
========================= */

.site-header {
  position: fixed;
  top: 0;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  right: 0;
  z-index: 5000;
  padding: 18px 0;
 background:
    linear-gradient(
      to bottom,
      rgba(8,16,24,0.55) 0%,
      rgba(8,16,24,0.35) 62%,
      rgba(8,16,24,0.18) 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0);
  will-change: transform;
  border-bottom: 1px solid var(--header-border);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, padding 0.28s ease;
}

.site-header.is-solid {
  background:
    linear-gradient(
      to bottom,
      rgba(8, 16, 24, 0.92) 0%,
      rgba(8, 16, 24, 0.85) 100%
    );
  border-bottom-color: var(--header-solid-border);
  box-shadow: var(--header-solid-shadow);
}

.site-header.menu-open + .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-shell {
  width: min(var(--header-shell-max), calc(100% - var(--header-gutter-desktop)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.brand-mark-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brand-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.brand-mark-dark { opacity: 0; }
.site-header.is-solid .brand-mark-dark { opacity: 0; }
.site-header.is-solid .brand-mark-light { opacity: 1; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.92;
  color: #ffffff;
  transition: color 0.25s ease;
}

.brand-name sub {
  font-size: 0.5em;
  line-height: 0;
  position: relative;
  bottom: -0.08em;
}

.brand-tag {
  margin-top: 3px;
  margin-left: 1px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.site-header.is-solid .brand-name { color: #ffffff; }
.site-header.is-solid .brand-tag { color: rgba(255, 255, 255, 0.78); }

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transition: width 0.25s ease;
}

.menu-link:hover::after,
.menu-link:focus-visible::after { width: 100%; }

.site-header.is-solid .menu-link {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 5100;
}

.menu-toggle-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.24s ease, top 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

.menu-toggle-line:first-child { top: 16px; }
.menu-toggle-line:last-child { top: 26px; }
.site-header.is-solid .menu-toggle-line { background: #ffffff; }
body.menu-open .menu-toggle-line:first-child { top: 21px; transform: rotate(45deg); }
body.menu-open .menu-toggle-line:last-child { top: 21px; transform: rotate(-45deg); }

.menu-panel {
  position: fixed;

  right: 0;
  width: min(400px, 100vw);

  z-index: 5050;
  padding: 88px 24px 28px;
  background: var(--header-menu-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

body.menu-open .menu-panel { transform: translateX(0); }

.menu-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.panel-link-cta {
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  text-align: center;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5040;
  background: rgba(0, 0, 0, 0.36);
  opacity: 0;
  transition: opacity 0.28s ease;
}

body.menu-open .menu-backdrop { opacity: 1; }
body.menu-open { overflow: hidden; }

.hero-content {
  padding-top: calc(var(--header-height-desktop) + 66px);
}

@media (max-width: 991px) {
  .site-header {
    padding: 14px 0;
	  z-index: 10000;
  }

  .site-shell {
    width: min(100%, calc(100% - var(--header-gutter-mobile)));
  }
  
    .menu-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;

    background: rgba(8, 16, 24, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    z-index: 9998;
  }

  .menu-backdrop {
    top: var(--header-height);
    z-index: 9997;
  }

  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-mark-wrap {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-tag {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero-content {
    padding-top: calc(var(--header-height-mobile) + 64px);
  }
}

@media (max-width: 576px) {
  .menu-panel {
    padding-top: calc(var(--header-height-mobile) + 12px);
  }

  .hero-content {
    padding-top: calc(var(--header-height-mobile) + 56px);
  }
}

/* =========================
   BOOKING PAGE
========================= */

.booking-page-body {
  background:
    radial-gradient(circle at top, rgba(255,255,255,.72), rgba(255,255,255,0) 32%),
    linear-gradient(180deg, #f8f6f1 0%, #f3efe8 100%);
}

.booking-layout {
  padding-top: 0 !important;
}

.booking-hero {
  position: relative;
  padding: 150px 0 70px;
  background:
    linear-gradient(rgba(3, 6, 11, .72), rgba(3, 6, 11, .84)),
  url("../images/fjord-floating-sauna-odda.jpg") center / cover no-repeat;
}

.booking-hero-card {
  max-width: 780px;
  color: #fff;
}

.booking-hero-card .eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}

.booking-hero-card h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .98;
  color: #fff;
}

.booking-hero-card p {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
}

.booking-section {
  padding: 80px 0 110px;
}

.booking-card {
  padding: 34px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-summary-card {
  position: sticky;
  top: calc(var(--header-height-desktop) + 24px);
}

.booking-title {
  font-size: clamp(34px, 3vw, 46px);
}

.booking-subtitle {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.1;
  color: #11161b;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-header {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #101418;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.calendar-days button,
.day-spacer {
  min-height: 48px;
}

.calendar-days button {
  width: 100%;
  border: 1px solid rgba(16,20,24,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  color: #101418;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.calendar-days button:hover:not(:disabled),
.calendar-days button.selected {
  transform: translateY(-1px);
  border-color: rgba(16,20,24,.28);
  background: #101820;
  color: #fff;
}

.calendar-days button.disabled,
.calendar-days button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.slot-message,
.form-hint {
  color: var(--text-soft);
  font-size: 14px;
}

.slot-list {
  display: grid;
  gap: 10px;
}

.slot-list button {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16,20,24,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  text-align: left;
  font-weight: 800;
  color: #101418;
}

.slot-list button.selected {
  background: #101820;
  color: #fff;
}

.form-label {
  font-weight: 800;
  color: #101418;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(16,20,24,.12);
}

.summary-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(16,24,32,.94);
  color: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.summary-row span {
  color: rgba(255,255,255,.68);
}

.summary-row strong {
  color: #fff;
  text-align: right;
}

.summary-row.total {
  margin-top: 8px;
  border-bottom: 0;
  font-size: 20px;
}

.waitlist-error {
  display: none;
  color: #b00020;
  font-weight: 700;
}

.waitlist-error.show {
  display: block;
}

.btn-primary {
  border: 0;
  border-radius: 999px;
  background: #101820;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #24303a;
}

.btn-outline-secondary {
  border-radius: 999px;
}

@media (max-width: 991px) {
  .booking-layout {
    padding-top: var(--header-height-mobile);
  }

  .booking-hero {
    padding: 125px 0 56px;
  }

  .booking-section {
    padding: 54px 0 82px;
  }

  .booking-card {
    padding: 24px;
    border-radius: 22px;
  }

  .booking-summary-card {
    position: static;
  }
}

/* Booking page header should match the solid index nav */
.booking-page-body .site-header {
  background:
   transparent,
    linear-gradient(
      to bottom,
      rgba(8, 16, 24, 0.94) 0%,
      rgba(8, 16, 24, 0.88) 100%
    ) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}




.booking-page-body .brand-name,
.booking-page-body .brand-tag,
.booking-page-body .menu-link {
  color: #ffffff !important;
}

.booking-page-body .menu-toggle-line {
  background: #ffffff !important;
}

/* Force booking page nav to match dark index nav */
.booking-solid-header {
  background: #081018 !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.24) !important;
}

.booking-solid-header .brand-name,
.booking-solid-header .brand-tag,
.booking-solid-header .menu-link {
  color: #fff !important;
}

.booking-solid-header .menu-toggle-line {
  background: #fff !important;
}

/* Booking page hero-aware header behavior */

.booking-page-body .site-header {
  background:
    linear-gradient(
      to bottom,
      rgba(8,16,24,0.55) 0%,
      rgba(8,16,24,0.35) 62%,
      rgba(8,16,24,0.18) 100%
    );
}

.booking-page-body .site-header.is-solid {
  background:
    linear-gradient(
      to bottom,
      rgba(8,16,24,0.92) 0%,
      rgba(8,16,24,0.85) 100%
    );
}

.booking-page-body .booking-hero {
   margin-top: 0 !important;
  padding-top: calc(var(--header-height-desktop) + 120px) !important;
}

.booking-page-body .booking-hero {
  margin-top: calc(-1 * var(--header-height-desktop));
  padding-top: calc(var(--header-height-desktop) + 150px);
  
}
  
  .site-header:not(.is-solid) .menu-link:hover,
.site-header:not(.is-solid) .menu-link:focus-visible {
  color: #ffffff !important;
}

/* =========================
   ADMIN PAGE
========================= */

.admin-page-body {
  background:
    radial-gradient(circle at top, rgba(255,255,255,.72), rgba(255,255,255,0) 32%),
    linear-gradient(180deg, #f8f6f1 0%, #f3efe8 100%);
}

.admin-layout {
  padding-top: 0;
}

.admin-hero {
  position: relative;
  padding: calc(var(--header-height-desktop) + 110px) 0 62px;
  background:
    linear-gradient(rgba(3, 6, 11, .72), rgba(3, 6, 11, .84)),
    url("../images/fjord-floating-sauna-odda.jpg") center / cover no-repeat;
}

.admin-section {
  padding: 72px 0 110px;
}

.admin-card {
  padding: 34px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin-card h2 {
  margin-top: 34px;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1.05;
  color: #11161b;
}

.admin-card h2:first-child {
  margin-top: 0;
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(16,20,24,.12);
}

.admin-card button,
#cancelModal button,
#offlineBookingModal button,
#bookingDetailModal button,
#punchPassModal button {
  border-radius: 999px;
  border: 1px solid rgba(16,20,24,.16);
  padding: 8px 14px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.admin-card button:hover,
#cancelModal button:hover,
#offlineBookingModal button:hover,
#bookingDetailModal button:hover,
#punchPassModal button:hover {
  background: #f3efe8;
}

#refreshBtn,
#exportCsvBtn,
#offlineBookingBtn,
#createPunchPassBtn,
#refreshPunchPassesBtn,
#searchPunchPassesBtn,
#punchPassSaveBtn,
#offlineBookingSaveBtn {
  background: #101820;
  color: #fff;
  border-color: #101820;
}

#refreshBtn:hover,
#exportCsvBtn:hover,
#offlineBookingBtn:hover,
#createPunchPassBtn:hover,
#refreshPunchPassesBtn:hover,
#searchPunchPassesBtn:hover,
#punchPassSaveBtn:hover,
#offlineBookingSaveBtn:hover {
  background: #24303a;
}

#slotList button {
  display: block;
  width: 100%;
  text-align: left;
  margin: 10px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
}

#bookingDetails table,
#punchPassList table {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

#bookingDetails th,
#punchPassList th {
  background: #101820;
  color: #fff;
}

#bookingDetails td,
#bookingDetails th,
#punchPassList td,
#punchPassList th {
  padding: 10px;
  border-color: rgba(16,20,24,.10);
}

@media (max-width: 991px) {
  .admin-hero {
    padding: calc(var(--header-height-mobile) + 82px) 0 48px;
  }

  .admin-section {
    padding: 46px 0 80px;
  }

  .admin-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* Mobile-safe admin tables */
@media (max-width: 768px) {
  #bookingDetails,
  #punchPassList {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #bookingDetails table,
  #punchPassList table {
    min-width: 760px;
  }

  #bookingDetails::after,
  #punchPassList::after {
    content: "Swipe sideways to view full table";
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-soft);
  }
}
.calendar-loading {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(16,20,24,.08);
  font-weight: 600;
  color: #101418;
  text-align: center;
  margin-bottom: 10px;
}

.admin-stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,20,24,.08);
}

.admin-stat-card strong {
  display: block;
  font-size: 24px;
  color: #101820;
}

.admin-stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-soft);
}

.admin-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table-scroll table {
  min-width: 920px;
}

@media (max-width: 768px) {
  .admin-stat-card {
    padding: 14px;
  }

  .admin-stat-card strong {
    font-size: 20px;
  }

  .admin-card [id^="view"] {
    margin-top: 8px;
  }

  .admin-stat-card {
    min-width: 0;
  }

  #rangeBookingDetails > div:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.admin-toolbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-toolbar-row.actions {
  border-top: 1px solid rgba(16,20,24,.08);
  padding-top: 12px;
}

.admin-toolbar-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-toolbar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.admin-toolbar-group button {
  border-radius: 999px;
  padding: 6px 14px;
}

.admin-toolbar-group button.active {
  background: #101820;
  color: #fff;
}

@media (max-width: 576px) {
  .admin-toolbar {
    gap: 12px;
  }

  .admin-toolbar-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-toolbar-group {
    width: 100%;
  }

  .admin-toolbar-group:first-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-toolbar-group:first-child button {
    width: 100%;
    padding: 10px 8px;
  }

  .admin-toolbar-label {
    display: block;
    margin-bottom: 4px;
  }

  #adminDate {
    width: 100%;
  }

  .admin-toolbar-row.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .admin-toolbar-row.actions button {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  #offlineBookingBtn,
  #createPunchPassBtn,
  #refreshPunchPassesBtn {
    grid-column: span 2;
  }
}

/* Modal primary action buttons (offline booking + punch pass) */

#offlineBookingSaveBtn,
#punchPassSaveBtn {
  background: #101820 !important;
  color: #fff !important;
  border: 1px solid #101820 !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

#offlineBookingSaveBtn:hover,
#punchPassSaveBtn:hover {
  background: #24303a !important;
}

/* Secondary modal buttons */

#offlineBookingCloseBtn,
#punchPassCloseBtn,
#cancelModalCloseBtn,
#bookingDetailCloseBtn {
  background: transparent !important;
  border: 1px solid rgba(16,20,24,.16);
  color: #101820;
  border-radius: 999px;
  padding: 10px 18px;
}

.slot-card-time {
  font-weight: 800;
  margin-bottom: 8px;
}

.slot-progress-text {
  font-family: monospace;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 4px;
}

.slot-seat-line {
  font-weight: 700;
}

.slot-status-line {
  margin-top: 4px;
  font-weight: 800;
}

.slot-remaining-line,
.slot-confirm-note {
  margin-top: 2px;
  font-size: 13px;
  opacity: .78;
}

.slot-list button.selected {
  background: rgba(255,255,255,.92) !important;
  color: #101418 !important;
  border: 2px solid #101820 !important;
}

.slot-list button.selected * {
  color: #101418 !important;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.45);
}

.booking-modal-card {
  width: min(560px, 94vw);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
}