/* Aurora Fjord Hotel & Casino - CSS Styles */
/* Design System: "Nordlys Eleganse" */

/* ==================== */
/* CSS Variables */
/* ==================== */
:root {
  /* Dark Foundation */
  --midnight: #080808;
  --charcoal: #121212;
  --slate-dark: #1E1E1E;
  --graphite: #2A2A2A;
  --storm-gray: #3D3D3D;
  
  /* Golden Glow */
  --nordic-gold: #C9A227;
  --champagne: #E8D48B;
  --bronze: #9A7B0A;
  --amber: #D4A856;
  
  /* Text Colors */
  --white: #FFFFFF;
  --pearl: #F5F5F5;
  --silver: #BEBEBE;
  --smoke: #7A7A7A;
  --dim: #4A4A4A;
  
  /* Semantic */
  --success: #2E7D32;
  --error: #B71C1C;
  --warning: #C9A227;
  
  /* Gradients */
  --gradient-hero: linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.8) 70%, rgba(8,8,8,1) 100%);
  --gradient-gold: linear-gradient(135deg, #9A7B0A 0%, #C9A227 50%, #E8D48B 100%);
  --gradient-divider: linear-gradient(90deg, transparent 0%, #C9A227 50%, transparent 100%);
  
  /* Shadows */
  --glow-gold: 0 0 30px rgba(201, 162, 39, 0.15);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ==================== */
/* Reset & Base */
/* ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--midnight);
  color: var(--pearl);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--pearl);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--nordic-gold);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ==================== */
/* Typography */
/* ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--silver);
}

.overline {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nordic-gold);
  margin-bottom: 0.5rem;
}

/* ==================== */
/* Layout */
/* ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--charcoal);
}

/* ==================== */
/* Header & Navigation */
/* ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color var(--transition-slow), padding var(--transition-slow);
}

.header.scrolled {
  background-color: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--midnight);
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  
  .nav-desktop a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
  }
  
  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--nordic-gold);
    transition: width var(--transition-base);
  }
  
  .nav-desktop a:hover::after,
  .nav-desktop a.active::after {
    width: 100%;
  }
  
  .nav-desktop a.active {
    color: var(--nordic-gold);
  }
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--pearl);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pearl);
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--nordic-gold);
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: all var(--transition-slow);
}

.btn-primary {
  background: var(--nordic-gold);
  color: var(--midnight);
}

.btn-primary:hover {
  background: var(--champagne);
  color: var(--midnight);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--nordic-gold);
  border: 1px solid var(--nordic-gold);
}

.btn-secondary:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--champagne);
  color: var(--champagne);
}

.btn-ghost {
  background: transparent;
  color: var(--pearl);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--nordic-gold);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--silver);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--smoke);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  width: 24px;
  height: 40px;
  border: 2px solid var(--smoke);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--nordic-gold);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* Page Hero (Smaller) */
.page-hero {
  min-height: 50vh;
  padding-top: 8rem;
}

.page-hero-small {
  min-height: 40vh;
  padding-top: 8rem;
}

/* ==================== */
/* Cards */
/* ==================== */
.card {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.card:hover {
  border-color: var(--bronze);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  transform: scaleX(-1);
}

.card:hover .card-image img {
  transform: scaleX(-1) scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3, .card-body h4 {
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: 0.9375rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--nordic-gold);
}

/* Feature Cards */
.feature-card {
  background: transparent;
  border: 1px dashed var(--graphite);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  transition: all var(--transition-slow);
}

.feature-card:hover {
  border-style: solid;
  border-color: var(--nordic-gold);
}

.feature-card-icon {
  font-size: 2rem;
  color: var(--nordic-gold);
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Review Cards */
.review-card {
  background: var(--charcoal);
  border-left: 3px solid var(--nordic-gold);
  padding: 2rem;
  border-radius: 0 4px 4px 0;
}

.review-stars {
  color: var(--nordic-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--pearl);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1.25rem;
}

.review-author-info span {
  display: block;
}

.review-author-name {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--white);
}

.review-author-date {
  font-size: 0.75rem;
  color: var(--smoke);
}

/* ==================== */
/* Grids */
/* ==================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== */
/* Section Titles */
/* ==================== */
.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.section-header-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Golden Divider */
.divider-gold {
  height: 1px;
  background: var(--gradient-divider);
  margin: 3rem 0;
}

/* ==================== */
/* Casino Teaser */
/* ==================== */
.casino-teaser {
  position: relative;
  background-color: var(--charcoal);
}

.casino-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.03">♠♦♣♥</text></svg>');
  background-size: 200px;
  opacity: 0.5;
}

.casino-teaser .container {
  position: relative;
  z-index: 1;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 2rem 0;
}

.casino-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--champagne);
  font-size: 0.9375rem;
}

.casino-features span::before {
  content: '♦';
  color: var(--nordic-gold);
}

/* ==================== */
/* Forms */
/* ==================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pearl);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 56px;
  padding: 1rem 1.25rem;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  color: var(--pearl);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--smoke);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--nordic-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23C9A227"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
  padding-right: 3rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--nordic-gold);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.9375rem;
  color: var(--silver);
}

.form-checkbox a {
  color: var(--nordic-gold);
  text-decoration: underline;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== */
/* Booking Summary */
/* ==================== */
.booking-summary {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--graphite);
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.booking-summary-item span:first-child {
  color: var(--silver);
}

.booking-summary-item span:last-child {
  color: var(--pearl);
  font-weight: 500;
}

.booking-summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--graphite);
}

.booking-summary-total .total-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--silver);
  text-transform: uppercase;
}

.booking-summary-total .total-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--nordic-gold);
}

/* ==================== */
/* Reviews Rating */
/* ==================== */
.rating-summary {
  background: var(--slate-dark);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.rating-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rating-overall-score {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--nordic-gold);
}

.rating-overall-stars {
  color: var(--nordic-gold);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar-label {
  min-width: 100px;
  font-size: 0.875rem;
  color: var(--silver);
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--graphite);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--nordic-gold);
  border-radius: 4px;
}

.rating-bar-value {
  min-width: 40px;
  font-size: 0.875rem;
  color: var(--pearl);
  text-align: right;
}

/* ==================== */
/* Table */
/* ==================== */
.table-wrapper {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--graphite);
}

.table th {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nordic-gold);
  background: var(--charcoal);
}

.table td {
  font-size: 0.9375rem;
  color: var(--silver);
}

.table tbody tr:hover {
  background: var(--slate-dark);
}

/* ==================== */
/* Two Column Layout */
/* ==================== */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .two-col.reverse {
    direction: rtl;
  }
  
  .two-col.reverse > * {
    direction: ltr;
  }
}

.two-col-image {
  border-radius: 4px;
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

/* ==================== */
/* Info Cards Row */
/* ==================== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ==================== */
/* Help Resources */
/* ==================== */
.help-card {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  padding: 2rem;
}

.help-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.help-card h3 {
  margin-bottom: 0.5rem;
}

.help-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.help-card .phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--nordic-gold);
  margin-bottom: 0.5rem;
}

.help-card .availability {
  font-size: 0.875rem;
  color: var(--smoke);
  margin-bottom: 1.5rem;
}

/* ==================== */
/* Warning Banner */
/* ==================== */
.warning-banner {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--nordic-gold);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .warning-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.warning-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warning-banner-icon {
  font-size: 1.5rem;
  color: var(--nordic-gold);
}

.warning-banner p {
  margin-bottom: 0;
}

/* ==================== */
/* Age Badge */
/* ==================== */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--nordic-gold);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nordic-gold);
}

/* ==================== */
/* Legal Pages */
/* ==================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--graphite);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--silver);
  position: relative;
  padding-left: 1rem;
}

.legal-content li::before {
  content: '•';
  color: var(--nordic-gold);
  position: absolute;
  left: 0;
}

.legal-content ol {
  counter-reset: item;
}

.legal-content ol li {
  counter-increment: item;
}

.legal-content ol li::before {
  content: counter(item) '.';
}

/* ==================== */
/* Cookie Settings */
/* ==================== */
.cookie-category {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cookie-category h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.cookie-status {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.cookie-status.active {
  background: rgba(46, 125, 50, 0.2);
  color: #4CAF50;
}

.cookie-status.optional {
  background: rgba(201, 162, 39, 0.2);
  color: var(--nordic-gold);
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--graphite);
  border-radius: 26px;
  transition: var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--pearl);
  border-radius: 50%;
  transition: var(--transition-base);
}

.toggle input:checked + .toggle-slider {
  background: var(--nordic-gold);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--midnight);
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
  background: var(--midnight);
  border-top: 1px solid var(--bronze);
  padding: 5rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--graphite);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--nordic-gold);
  color: var(--nordic-gold);
}

.footer-nav h4 {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: var(--silver);
}

.footer-nav a:hover {
  color: var(--nordic-gold);
}

.footer-bottom {
  border-top: 1px solid var(--graphite);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--smoke);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--smoke);
}

/* ==================== */
/* Cookie Popup */
/* ==================== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-dark);
  border-top: 1px solid var(--graphite);
  padding: 1.5rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-popup-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-popup-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-popup-icon {
  font-size: 1.5rem;
}

.cookie-popup-text p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.cookie-popup-text a {
  color: var(--nordic-gold);
  text-decoration: underline;
}

.cookie-popup-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==================== */
/* Gallery */
/* ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  transform: scaleX(-1);
}

.gallery-item:hover img {
  transform: scaleX(-1) scale(1.1);
}

/* ==================== */
/* Reviews Carousel */
/* ==================== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
}

.reviews-track .review-card {
  min-width: 100%;
}

@media (min-width: 768px) {
  .reviews-track .review-card {
    min-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .reviews-track .review-card {
    min-width: calc(33.333% - 1rem);
  }
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--graphite);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  border-color: var(--nordic-gold);
  color: var(--nordic-gold);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--graphite);
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--nordic-gold);
}

/* ==================== */
/* CTA Section */
/* ==================== */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--smoke);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==================== */
/* Contact Info */
/* ==================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--nordic-gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.contact-item a {
  color: var(--nordic-gold);
}

/* ==================== */
/* Room Details Modal */
/* ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--slate-dark);
  border: 1px solid var(--graphite);
  border-radius: 4px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--graphite);
}

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

.modal-close:hover {
  color: var(--nordic-gold);
}

.modal-body {
  padding: 1.5rem;
}

/* ==================== */
/* Utilities */
/* ==================== */
.text-center { text-align: center; }
.text-gold { color: var(--nordic-gold); }
.text-white { color: var(--white); }
.text-silver { color: var(--silver); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Image mirroring for uniqueness */
.img-mirror {
  transform: scaleX(-1);
}

/* ==================== */
/* Animations */
/* ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== */
/* Print Styles */
/* ==================== */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  * {
    color: black !important;
    background: transparent !important;
  }
}
