:root {
  --neon-green: #00ff9f;
  --neon-pink: #ff00cc;
  --neon-blue: #00d0ff;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;           /* VIGTIGT mod horisontal scroll */
  width: 100%;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--dark-bg);
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==================== HEADER ==================== */
header {
  background: #000;
  border-bottom: 4px solid var(--neon-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  height: 52px;
  width: auto;
  max-width: 240px;
}

.logo-text {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: white;
  text-shadow: 0 0 20px var(--neon-green);
  white-space: nowrap;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.btn-booking {
  background: var(--neon-green);
  color: #000;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==================== MOBILE ==================== */
@media (max-width: 992px) {
  .logo-image { height: 46px; }
  .logo-text { font-size: 1.4rem; }
  
  .nav-menu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
  }
  .nav-menu.active ul { display: flex; }
  
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
  .menu-toggle .bar { height: 3px; width: 28px; background: white; }
}

@media (max-width: 480px) {
  .logo-image { height: 42px; }
  .logo-text { font-size: 1.25rem; }
  .container { padding: 0 12px; }
}