/* ===== INSTÄLLNINGAR ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500&display=swap');

html {
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */

#header {
  background-color: #0F0F12;
  border-bottom: 1px solid rgba(201, 162, 77, 0.3);
}

#header nav a {
  color: #C2185B !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#header nav a:hover,
#header nav li.active > a,
#header nav li.selected > a,
#header nav a.active {
  color: #C9A24D !important;
}

#header nav a {
  position: relative;
}

#header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #C9A24D;
  transition: width 0.2s ease;
}

#header nav a:hover::after,
#header nav .active > a::after {
  width: 100%;
}

/* ===== ALLMÄNT ===== */

body {
  font-family: 'Inter', sans-serif;
  background-color: #0F0F12;
  color: #F4F2EE;
}
#body-wrapper .container {
  padding-top: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #C2185B;
}

a {
  color: #C2185B;
}

a:hover {
  color: #C9A24D;
}


h1, h2, h3 {
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

p {
  max-width: 700px;
  line-height: 1.7;
}

.modular-hero,
.header-image,
.hero {
  position: relative;
}

.modular-hero::after,
.header-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2rem;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #C9A24D,
    transparent
  );
  margin: 4rem 0;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border-left: 4px solid #C2185B;
  padding-left: 1.5rem;
}

.hero-image {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: block;
}

.hero-image {
  max-height: 80vh;
  object-fit: cover;
}

.hero-image {
  filter: contrast(1.05) saturate(1.05);
}

/* ===== GEMENSAM KNAPPSTIL ===== */

.button.primary,
.booking-section .form-wrapper .btn,
.booking-section .form-actions input[type="submit"] {
  /* Reset Quark */
  padding: 0;
  line-height: normal;
  height: auto;

  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;

  /* Spacing */
  padding: 0.9rem 2.2rem;

  /* Look */
  background: linear-gradient(135deg, #C2185B, #A01445);
  color: #F4F2EE;
  border-radius: 6px;
  border-color: #A01445;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.button.primary {
  
}

/* ===== BOKNINGSFORMULÄR ===== */

.booking-section {
  background: linear-gradient(135deg, #8e1452, #c2185b);
  padding: 3rem 1.5rem;
  border-radius: 6px;
  margin-top: 2.5rem;
}
.booking-section > h2 {
  margin-top: 0;
  color: rgb(244, 242, 238);
}
.booking-section span.required {
  color: rgb(244, 242, 238);
  font-weight: 400;
}

.form-message.success {
  margin: 2rem 0;
  padding: 1.2rem 1.6rem;
  background: rgba(194, 24, 91, 0.08); /* accent light */
  border-left: 4px solid #C2185B;
  color: #3a1c2a;
  font-weight: 500;
}

/* ===== FOOTER ===== */

#footer {
  background: #1b0f14; /* mörk, varm, inte svart */
  color: #f4f2ee;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 77, 0.3);
}

#footer hr {
  margin: 2rem 0;
}