/* ByDyr Studio — fælles stilark */
:root {
  --navy: #102a43;
  --turquoise: #6fafb3;
  --turquoise-deep: #4f969b;
  --bg: #f7f6f2;
  --card: #ffffff;
  --text: #1f2933;
  --text-muted: #627d98;
  --neutral: #d9d6cf;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(16, 42, 67, 0.08);
  --container: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--turquoise-deep); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Knapper (alle med hover) ------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--turquoise-deep); }
.btn-secondary { background: var(--turquoise); color: var(--navy); }
.btn-secondary:hover { background: var(--turquoise-deep); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--neutral);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.brand {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--text); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--turquoise-deep); }
.site-nav a[aria-current="page"] { color: var(--turquoise-deep); }
.nav-cta { color: #fff !important; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin: 0 0 1rem; }
.hero .tagline {
  display: inline-block;
  background: var(--card);
  color: var(--turquoise-deep);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.hero p.lead {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Sektioner ---------------------------------------------------------- */
section { padding: 4rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0 0 0.75rem; }
.section-head p { color: var(--text-muted); margin: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--neutral);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--text-muted); }

.usp-section { background: var(--navy); }
.usp-section .section-head h2,
.usp-section .section-head { color: #fff; }
.usp-section .section-head p { color: var(--turquoise); }
.usp-section .card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255,255,255,0.12); }
.usp-section .card h3 { color: #fff; }
.usp-section .card p { color: var(--turquoise); }

/* Billede-placeholder */
.placeholder {
  background: linear-gradient(135deg, var(--turquoise), var(--navy));
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* --- Betaling ----------------------------------------------------------- */
.pay-card {
  background: var(--card);
  border: 1px solid var(--neutral);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.pay-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* --- Kontakt ------------------------------------------------------------ */
.contact-form { display: grid; gap: 1rem; max-width: 560px; margin: 0 auto; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--neutral);
  border-radius: 10px;
  font: inherit;
  background: var(--card);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--turquoise); border-color: transparent; }

/* --- Booking ------------------------------------------------------------ */
.cal-embed { min-height: 600px; width: 100%; border: 0; border-radius: var(--radius); overflow: hidden; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--neutral); padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.site-footer h3, .site-footer h4 { color: #fff; margin: 0 0 0.75rem; }
.site-footer p { margin: 0.25rem 0; }
.site-footer a { color: var(--turquoise); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.newsletter-form input { flex: 1; padding: 0.6rem 0.8rem; border: 1px solid var(--neutral); border-radius: 999px; font: inherit; }
.newsletter-note { color: var(--turquoise); font-weight: 600; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem; padding-top: 1.5rem;
}
.footer-bottom nav { display: flex; gap: 1.5rem; }
.staff-link { opacity: 0.6; font-size: 0.9rem; }

/* --- Cookie-banner ------------------------------------------------------ */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 100;
  max-width: 720px; margin: 0 auto;
  background: var(--card); color: var(--text);
  border: 1px solid var(--neutral); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.95rem; flex: 1 1 280px; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-actions .btn { padding: 0.55rem 1.1rem; }

/* --- Indhold (privatliv) ------------------------------------------------ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }

/* --- Mobil -------------------------------------------------------------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--neutral);
    padding: 0.5rem 1.25rem; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75rem 0; width: 100%; }
  .nav-cta { margin: 0.5rem 0; }
  .split { grid-template-columns: 1fr; }
}
