/*
Theme Name: Rum for Relationer
Theme URI: https://rumforrelationer.dk
Author: Rum for Relationer
Description: Præsentationsside for Rum for Relationer
Version: 1.0
License: Private
Text Domain: rumforrelationer
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage: #4a6358;
  --sage-light: #e8ede9;
  --sage-mid: #7a9b8a;
  --warm: #f5f0e8;
  --text: #1e2824;
  --text-muted: #5a6b63;
  --border: rgba(74, 99, 88, 0.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: #fafaf7;
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sage); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  background: var(--sage);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0.75;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-light);
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1.7;
  margin-top: 2rem;
  max-width: 36ch;
  opacity: 0.88;
}

.hero-cta {
  margin-top: 3rem;
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  align-self: flex-start;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-right {
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-right::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 28ch;
}

.hero-quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--sage-mid);
  opacity: 0.25;
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.hero-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.6;
}

/* SECTION BASE */
section {
  padding: 6rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

/* YDELSER */
#ydelser {
  background: #fff;
}

.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.ydelse-card {
  background: #fff;
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.ydelse-card:hover {
  background: var(--sage-light);
}

.ydelse-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.ydelse-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ydelse-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* OM */
#om {
  background: var(--warm);
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.om-intro {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}

.om-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
}

.team-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* KONTAKT */
#kontakt {
  background: var(--sage);
}

#kontakt .section-label { color: var(--sage-light); opacity: 0.6; }
#kontakt .section-title { color: #fff; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}

.kontakt-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1.8;
  opacity: 0.88;
}

.kontakt-email {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* FOOTER */
footer {
  background: var(--text);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 2.5rem; }
  .hero-right { min-height: 40vh; padding: 4rem 2rem; }
  .ydelser-grid { grid-template-columns: 1fr; }
  .om-grid { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}
