/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #111827;
}

/* HEADER */
.site-header {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
}

.site-logo {
  margin: 0 auto;
  font-size: 3rem;
  font-family: "Georgia", serif;
  color: #f97316;
}

.site-header__spacer {
  width: 2rem;
}

.icon-button {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: none;
  background: #f3f4f6;
  cursor: pointer;
}

/* PAGE */
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* HERO */
.experience-hero {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .experience-hero {
    grid-template-columns: 1fr;
  }
}

/* PLACEHOLDERS */
.hero-gallery {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 1rem;
}

.hero-gallery__main {
  height: 380px;
}

.placeholder-main {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
}

.hero-gallery__side {
  display: grid;
  gap: 0.75rem;
}

.placeholder-side {
  height: 110px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

/* BOOKING CARD */
.booking-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card__price {
  font-size: 1.6rem;
  font-weight: 600;
}

.booking-card__per {
  color: #6b7280;
  font-size: 0.85rem;
}

.booking-card__month-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CALENDAR */
.booking-card__calendar {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 1.2rem;
}

.calendar-row--weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  border-radius: 999px;
  padding: 0.5rem;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
}

.calendar-day--muted {
  background: transparent;
  color: #d1d5db;
  cursor: default;
}

.calendar-day--available {
  background: #d1fae5;
}

.calendar-day--few {
  background: #fef3c7;
}

.calendar-day--soldout {
  background: #fee2e2;
  color: #b91c1c;
  cursor: not-allowed;
}

/* BOOK NOW BUTTON */
.booking-card__button {
  border-radius: 999px;
  padding: 0.8rem;
  background: #111827;
  color: white;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.booking-card__button:hover {
  background: #020617;
}

.booking-card__footnote {
  font-size: 0.8rem;
  color: #6b7280;
}

/* EXPERIENCE BODY */
.experience-body {
  max-width: 720px;
}

.experience-header h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: #f3f4f6;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.experience-description p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.experience-section {
  margin-top: 1.5rem;
}

.experience-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.checklist,
.info-list {
  list-style: none;
  padding: 0;
}

.checklist li,
.info-list li {
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #16a34a;
}

/* BOOKING FORM SECTION */
.hidden {
  display: none;
}

.booking-form-section {
  margin-top: 3rem;
}

.booking-form__inner {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.booking-form__inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.booking-form__subtitle {
  margin: 0 0 1.25rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row label {
  font-size: 0.9rem;
  color: #374151;
}

.form-row input,
.form-row textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

.booking-form__submit {
  margin-top: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  border: none;
  background: #111827;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
}

.booking-form__submit:hover {
  background: #020617;
}

/* Secondary button styled like primary button */
.booking-form__secondary {
  margin-top: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  border: none;
  background: #dc2626;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
}

.booking-form__secondary:hover {
  background: #b91c1c;
}

/* Venteliste-knap: anden farve end Afmeld booking */
.booking-form__waitlist {
  background: #f59e0b; /* varm orange-gul til venteliste */
}

.booking-form__waitlist:hover {
  background: #d97706;
}

.booking-form__feedback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #16a34a;
}

/* --- Statusboks til booking --- */
.status-box {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #dde2eb;
  background: #f5f7fb;
  font-size: 0.95rem;
}

.status-box-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.status-box-text {
  color: #444;
}

.status-success {
  border-color: #3bb273;
  background: #e7f7ee;
}

.status-waitlist {
  border-color: #f2c94c;
  background: #fff7e0;
}

.status-error {
  border-color: #eb5757;
  background: #ffeaea;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  display: block;
}

.hero-img-side {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
}
.calendar-day--disabled {
  opacity: 0.35;
  cursor: default;
}

.calendar-day--event {
  background: rgb(51, 192, 51) !important;     /* kraftig grøn */
  color: #000000 !important;          /* mørk grøn tekst */
  box-shadow: 0 0 0 2px #000000;      /* tydelig grøn kant */
  transform: scale(1);
  font-weight: 700;
  border: none;
}

.booking-card__hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}
/* Låst / fast dato-felt i bookingformularen */
#bf-date[readonly] {
  background-color: #f3f4f6; /* lysegrå baggrund */
  color: #6b7280;            /* grå tekst */
  border-color: #d1d5db;     /* blød grå kant */
  cursor: default;           /* ingen "tekst-markerings"-cursor */
}

#bf-date[readonly]:focus {
  outline: none;
  box-shadow: none;
}