/* Nitten Rejser – eksklusiv, minimal skiferie-site */

:root {
  --color-bg: #faf9f6;
  --color-bg-dark: #1a2332;
  --color-text: #1a2332;
  --color-text-muted: #5c6b7a;
  --color-accent: #8b6914;
  --color-accent-light: #c4a84b;
  --color-border: #e2ddd4;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-logo {
  flex-shrink: 0;
  line-height: 0;
}

.header-logo-img {
  display: block;
  height: 64px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-header {
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .site-header .nav {
    margin-left: auto;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.35) 0%,
    rgba(26, 35, 50, 0.5) 50%,
    rgba(26, 35, 50, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.06em;
}

/* Intro */
.intro {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

/* Rejse (Uge 4) */
.rejse {
  padding: 4.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.rejse-uge {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-accent);
  margin: 0 0 1.5rem;
}

.rejse-desc {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.rejse-visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.rejse-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sådan rejser du med Nitten Rejser */
.sådan {
  padding: 4.5rem 0;
  background: #f5f4f0;
  border-top: 1px solid var(--color-border);
}

.sådan-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

.sådan-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.sådan-list li {
  margin-bottom: 0.75rem;
}

/* CTA-banner */
.cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.6);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
}

.cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.5rem;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Kontakt */
.kontakt {
  padding: 4.5rem 0;
}

.kontakt-desc {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.kontakt-email {
  margin: 0;
}

.kontakt-email a {
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent-light);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.kontakt-email a:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 72px;
  height: auto;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .nav {
    gap: 1.5rem;
  }

  .hero-logo {
    max-width: 180px;
  }
}
