/* =============================================
   Rune Harder Bak — Foredrag & Sjælerejser
   Palette: #30618C (navy) · #59A8D9 (blue) · #1C2B3A (dark)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:  #c4603a;
  --blue:  #f5f0e8;
  --sky:   #c4603a;
  --dark:  #3d2418;
  --cream: #ede7db;
  --white: #ffffff;
  --text:  #3d2e22;
  --font-serif: 'Varela Round', sans-serif;
  --font-sans:  'DM Sans', sans-serif;
  --max-w: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--blue);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTIONS ---- */
.section        { padding: 110px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--white); color: var(--dark); }

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-weight: 400;
}

.section-label--light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 28px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { margin-bottom: 18px; font-size: 1.15rem; }
p:last-child { margin-bottom: 0; }

.highlight-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #1a1a1a;
  line-height: 1.5;
}

/* ---- BUTTONS & LINKS ---- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--navy); color: var(--white); }

.btn--white {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
  margin-top: 10px;
}
.btn--white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.link-arrow {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: #555; border-color: #555; }

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.header__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 48px 0 0;
  height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 0 24px;
  align-self: stretch;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.12);
}

.nav__list {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav__link {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav__link:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -15% 0;
  background-image: url('../billeder/IMG3_1.webp');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
  z-index: 0;
}

.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
  max-width: 1100px;
}

.hero__eyebrow {
  display: none;
}

/* "Foredrag & Sjælerejser" øverst i hero */
.hero__toplabel {
  position: absolute;
  top: 106px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  margin-bottom: 28px;
  max-width: 1000px;
}

.hero__subtitle {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 44px;
}

.hero__cta {
  display: inline-block;
  padding: 15px 44px;
  border: 1.5px solid rgba(255,255,255,0.65);
  color: var(--white);
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}
.hero__cta:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- SPLIT LAYOUT ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse .split__text  { order: 2; }
.split--reverse .split__image { order: 1; }

.split__image {
  min-height: 700px;
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border-radius: 2px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.13);
  object-fit: cover;
  object-position: center top;
}

/* Billede fylder hele blokken som baggrund */
.split__image--cover {
  min-height: 520px;
  border-radius: 2px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.13);
  background-size: cover;
  background-position: center;
}

.split__image--rune1 {
  background-image: url('../billeder/rune1.webp');
}


/* ---- EVENT ---- */
.event-section {
  background: var(--cream);
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border-radius: 4px;
  padding: 52px 56px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border-left: 5px solid var(--navy);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 20px 28px;
  min-width: 90px;
  text-align: center;
}

.event-day {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
}

.event-month {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

.event-meta {
  margin: 18px 0 28px;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.75;
}

@media (max-width: 680px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .event-date { flex-direction: row; gap: 12px; align-items: baseline; width: fit-content; }
}

/* ---- TO-KOLONNE TEKST (Bevidsthed) ---- */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: start;
}

.bevidsthed-img {
  margin-top: 56px;
}

.bevidsthed-img img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

/* ---- FEATURE LIST ---- */
.feature-list {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

/* ---- QUOTE BAND ---- */
.quote-band {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
  overflow: hidden;
}
.photo-strip__img {
  overflow: hidden;
}
.photo-strip__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-strip__img:hover img { transform: scale(1.06); }

/* ---- KONTAKT SECTION ---- */
.kontakt-section {
  padding: 110px 0;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kontakt-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.kontakt-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}
.kontakt-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.kontakt-email {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1a1a1a;
  transition: color 0.2s;
  margin-top: 20px;
  display: inline-block;
}
.kontakt-email:hover { color: #555; }

.kontakt-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Kontaktformular */
.contact-form {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form button {
  align-self: flex-start;
  padding: 13px 36px;
  background: #3d2418;
  border: 1.5px solid #3d2418;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.25s;
}
.contact-form button:hover {
  background: #2a1810;
  border-color: #2a1810;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 36px 0;
  text-align: center;
}
.footer p {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

/* ---- ANIMATE IN ---- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.delay-1 { transition-delay: 0.15s; }
.animate-in.delay-2 { transition-delay: 0.30s; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .two-col-text { grid-template-columns: 1fr; }

  .split,
  .split--reverse .split__text,
  .split--reverse .split__image {
    grid-template-columns: 1fr;
    order: unset;
  }
  .split { gap: 48px; }
  .split--reverse .split__image { order: -1; }

  .kontakt-inner { grid-template-columns: 1fr; gap: 48px; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip__img img { height: 220px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .header__inner { padding: 0 20px; }
  .nav__toggle   { display: flex; }

  .nav__list {
    display: none;
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .nav__list.open { display: flex; }
  .nav__link { display: block; padding: 13px 28px; border-bottom: none; }

  .hero__title { font-size: 3rem; }
  .section     { padding: 72px 0; }
  .quote-band  { padding: 60px 24px; }

  .photo-strip { display: none; }
}
