/* =========================
   BAS
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1f1c;
  color: #f5f5f5;
}

/* =========================
   SPRÅKVAL
========================= */
.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lang-switch a {
  color: #fff;
  margin-left: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   SIDLAYOUT (NYCKELN)
========================= */
.page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  flex-direction: column;   /* 🔑 vertikal stapling */
  align-items: center;
  gap: 80px;
}

/* =========================
   HERO
========================= */
.hero {
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* =========================
   KNAPPAR
========================= */
.btn {
  background: #1f6f5c;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.btn:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #1f6f5c;
  color: #1f6f5c;
}

.btn-secondary:hover {
  background: #1f6f5c;
  color: #fff;
}

/* =========================
   SÄLJTEXt
========================= */
.selling-text {
  max-width: 900px;
  margin: 0 auto;          /* 🔑 CENTRERAR BLOCKET */
  text-align: center;      /* 🔑 CENTRERAR TEXTEN */
  font-size: 1.1rem;
  line-height: 1.7;
}


/* =========================
   KALENDER
========================= */
.calendar-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;          /* 🔑 CENTRERAR KALENDERN */
}

.calendar-wrapper iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* =========================
   FORMULÄR – KORT
========================= */
.form-container {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  background: #132824;
  border-radius: 16px;
  text-align: center;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04);
}

.form-container h2 {
  margin-bottom: 30px;
}

/* =========================
   FORMULÄRFÄLT
========================= */
.form-container form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

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

/* =========================
   FORM-KNAPPAR
========================= */
.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================
   MOBIL
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .page-wrapper {
    padding: 50px 15px;
    gap: 60px;
  }
}
/* ===== BOOKING-SIDA – SLUTGILTIG FIX ===== */
.site {
  width: 100%;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  justify-content: center;
}

/* SJÄLVA RUTAN */
#booking-card {
  width: 100%;
  max-width: 600px;
  padding: 40px;

  background: #132824;
  border-radius: 16px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04);

  text-align: center;
}

#booking-card form {
  text-align: left;
}

