/* ── Palett ─────────────────────────────────────────────── */
:root {
  --bg:      #030;
  --green:   #003322;
  --gold:    #FC0;
  --gold-dim:#c9a000;
  --white:   #fff;
  --text:    #FC0;
  --radius:  8px;
  --nav-h:   72px;
}

/* ── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover, a:focus { color: var(--white); outline: none; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 2px solid var(--gold);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.nav-logo img {
  height: 54px;
  width: auto;
}
/* ── Språkväljare ───────────────────────────────────────── */
.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.lang-switch li { display: flex; align-items: center; }
.lang-switch a {
  padding: 2px 4px;
  color: var(--gold-dim);
  transition: color 0.2s;
}
.lang-switch a:hover, .lang-switch a:focus { color: var(--white); }
.lang-switch a[aria-current="true"] {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.lang-switch .sep { color: var(--gold-dim); }

@media (max-width: 640px) {
  .lang-switch a { padding: 6px 6px; }
}

/* ── Hjälpare ───────────────────────────────────────────── */
section { scroll-margin-top: calc(var(--nav-h) + 8px); }
.inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.55);
}
.hero-text {
  position: relative;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--gold);
  text-shadow: 0 2px 8px #000a;
  margin-bottom: 0.6rem;
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--white);
  text-shadow: 0 1px 4px #000a;
}

/* ── Sektionsrubrik ─────────────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold);
  border-bottom: 2px solid var(--gold-dim);
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}

/* ── Wagon Trail ────────────────────────────────────────── */
#wagontrail {
  padding: 4rem 0 3rem;
}
.wt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .wt-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--green);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.price {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--white);
}
.price strong { color: var(--gold); }
.notice {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0.4rem 0 1.5rem;
}
.notice-callout {
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 204, 0, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.8rem 1rem 0.8rem 0.9rem;
  margin: 0.4rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.notice-callout::before {
  content: "ℹ️";
  font-size: 1.1rem;
  line-height: 1;
}
.wt-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  height: 260px;
}
.wt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wt-wedding {
  margin-bottom: 1.5rem;
  text-align: center;
}
.wt-wedding img {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
}
.wt-wedding figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--green);
  margin: 0 1.5rem;
}

/* ── Äventyrsarken ──────────────────────────────────────── */
#aventyrsarken {
  padding: 4rem 0 3rem;
}
.av-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 640px) {
  .av-layout { grid-template-columns: 1fr; }
}
.av-text p { margin-bottom: 0.8rem; }
.av-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}
.av-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.av-photo-wide {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  height: 340px;
}
.av-photo-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Facebook ───────────────────────────────────────────── */
#facebook {
  padding: 4rem 0 3rem;
}
.fb-embed {
  display: flex;
  justify-content: center;
}
.fb-embed iframe {
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  max-width: 100%;
  background: var(--green);
}
.fb-consent {
  max-width: 500px;
  width: 100%;
  background: var(--green);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.fb-consent p { margin-bottom: 1rem; color: #ddd; }
.fb-consent-btn {
  background: var(--gold);
  color: #000;
  font-weight: bold;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.fb-consent-btn:hover, .fb-consent-btn:focus {
  background: var(--white);
  outline: none;
}
.fb-consent-alt {
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #aaa;
}

/* ── Här finns vi & Bokning ─────────────────────────────── */
#bokning {
  padding: 4rem 0 3rem;
}
.bokning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}
@media (max-width: 640px) {
  .bokning-grid { grid-template-columns: 1fr; }
}
.map-wrap {
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.bokning-info {
  background: var(--green);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.bokning-info h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.bokning-info p { margin-bottom: 0.6rem; }
.bokning-info .contact-list {
  list-style: none;
  margin: 0.8rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bokning-info .contact-list li { font-size: 1rem; }
.map-link {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.55rem 1.2rem;
  background: var(--gold);
  color: #000;
  font-weight: bold;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.map-link:hover { background: var(--white); color: #000; }

/* Framhävd kontakt-/bokningsdel inuti kortet */
.contact-box {
  margin-top: 1.4rem;
  padding: 1.2rem 1.3rem 1.3rem;
  background: rgba(255, 204, 0, 0.07);
  border: 1px solid rgba(201, 160, 0, 0.5);
  border-radius: var(--radius);
}
.contact-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}
.contact-heading::before {
  content: "📩";
  font-size: 1.15rem;
  line-height: 1;
}
.contact-box .fb-link {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  border-top: 2px solid var(--gold-dim);
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
}
.site-footer a { color: var(--gold); }
.site-footer a:hover { color: var(--white); }
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.fb-link:hover { color: var(--white); }
.fb-icon {
  width: 20px; height: 20px;
  fill: currentColor;
}
