/* --- GLOBAL RESET & BASE --- */
body {
  background-color: #0b0b0b;
  color: white;
  font-family: "Inter", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Felles container for å holde alt sentrert og passe bredt */
.container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- 1. HERO (TOPPEN) --- */
.booking-hero {
  text-align: center;
  padding: 100px 0 60px; /* God plass fra toppen */
  width: 100%;
}

.booking-hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(157, 50, 168, 0.8);
}

/* --- 2. PAKKER (MIDTEN) --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  margin-bottom: 80px; /* Gir luft før skjemaet */
}

.booking-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s;
}

.booking-card.featured {
  border: 2px solid #9d32a8;
  box-shadow: 0 0 30px rgba(157, 50, 168, 0.2);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #9d32a8;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: #9d32a8;
  margin: 20px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #222;
  color: #ccc;
}

.btn-select {
  background: #9d32a8;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

/* --- 3. SKJEMA (BUNNEN) --- */
.form-section {
  width: 100%;
  max-width: 800px; /* Skjemaet trenger ikke være like bredt som pakkene */
  padding-bottom: 100px;
}

.form-container {
  background: #151515;
  border: 1px solid #333;
  padding: 50px;
  border-radius: 24px;
}

.form-container.disabled {
  opacity: 0.2;
  pointer-events: none;
  filter: blur(2px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input,
select {
  background: #080808;
  border: 1px solid #333;
  padding: 18px;
  color: white;
  border-radius: 12px;
  font-size: 1rem;
}

.btn-confirm {
  width: 100%;
  background: #9d32a8;
  padding: 20px;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
}

/* Responsiv fiks for mobil */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Styler selve kalender-velgeren (hvit tekst på mørk bunn) */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Gjør det svarte ikonet hvitt */
  cursor: pointer;
}

/* Gjør feltet bredt og ryddig */
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 55px;
}
