/* ---------- Grundinställningar ---------- */
:root {
  --accent: #d6a77a;
  --accent-dark: #b5815b;
  --muted: rgba(255,255,255,0.85);
  --glass: rgba(255,255,255,0.08);
  --bg-dark: rgba(0,0,0,0.45);
  --max-width: 1200px;
  --site-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

* {
  box-sizing: border-box;
}

img, picture, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

body {
  color: #fff;
  /* Use a single fixed background image (no gradient overlay) */
  background: url('bild1.jpg') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
}

/* ---------- Header & navigation ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  backdrop-filter: blur(6px);
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.18s;
}

nav a:hover {
  transform: translateY(-3px);
  color: #fff;
}

.language-switcher button {
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
}

/* ---------- Hero (Hem) ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  /* subtle dark overlay */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
rgba(0,0,0,0.25),
      rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  padding: clamp(18px, 3vw, 40px);
  border-radius: 14px;
}

.hero-card {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25),
      rgba(0,0,0,0.25)
  );
  padding: clamp(16px, 4vw, 40px);
  border-radius: 14px;
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(1px);
}

.subtitle {
  opacity: 0.95;
  margin-top: 12px;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

h1 {
  font-size: clamp(28px, 4.5vw, 56px);
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  line-height: 1.02;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.book-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #111;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

/*.book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}*/

.book-wrap {
  margin-top: 26px;
}

/* Features under hero */
.features {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.feature {
  background: var(--glass);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
  min-width: 160px;
}

/* ---------- Sektioner: Om oss & Kontakt ---------- */
.section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.section-inner {
  width: 100%;
  max-width: var(--max-width);
  background: var(--glass);
  backdrop-filter: blur(1px);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--site-shadow);
}

.section-title {
  font-size: 32px;
  margin: 0 0 10px 0;
}

.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 6px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 24px;
  align-items: flex-start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 12px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--muted);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-gallery img {
  width: 100%;
  height: auto;
  min-height: 120px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  opacity: 0.96;
}



/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.contact-card {
  background: rgba(0,0,0,0.25);
  border-radius: 14px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--site-shadow);
}

.contact-card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.contact-card p,
.contact-card a,
.contact-meta {
  color: var(--muted);
  font-size: 14px;
}

.contact-card a {
  text-decoration: none;
  font-weight: 600;
}

.contact-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.contact-meta-label {
  opacity: 0.8;
}

.map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Footer ---------- */
footer {
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,0.75);
}

/* ---------- Animationer ---------- */
.fade-in {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsivitet ---------- */
@media (min-width: 1000px) {
  /* Larger screens handled via clamp() on h1 */
  /* background-attachment was removed from body since the background is now fixed globally */
}

@media (max-width: 760px) {
  /* Show the full navigation on mobile instead of using a hamburger */
  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  header {
    padding: 14px 18px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .hero {
    padding: 28px 18px;
    min-height: 40vh;
  }

  /* Stack header content for narrow screens */
  header {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .language-switcher {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  /* Slightly larger tappable nav links */
  nav a {
    font-size: 16px;
    width: 100%;
    padding: 12px 14px;
  }

  .map-placeholder {
    height: 180px;
  }

  /* Mobile nav link appearance: full-width touch targets */
  nav a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
  }

  nav a:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
    transform: none;
  }

  h1 {
    font-size: 32px;
  }

  .section-inner {
    padding: 24px 18px;
  }

  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile hamburger removed — navigation shown on small screens */