/* Sans og Sauna – lettere nuancer af bjerg, skov og jord fra naturen */
:root {
  /* Bjerg & sten */
  --stone-light: #e8e4de;
  --stone: #c4bfb6;
  --stone-mid: #9a9489;
  /* Skov & bark */
  --forest-light: #d4cfc4;
  --forest: #7d8b6f;
  --bark: #6b5d4f;
  --bark-dark: #5a4e42;
  /* Jord & sand */
  --earth-sand: #d9d0c2;
  --earth-warm: #b8a898;
  --earth-mid: #8f7e6a;
  --earth-deep: #6b5d4f;
  --earth-dark: #4a4035;
  /* Accent – varme naturtoner */
  --accent: #a68b6b;
  --accent-light: #c4a882;
  --moon: #f5f1e8;
  --text: #3d362d;
  --text-muted: #5c5248;
  --overlay: rgba(234, 228, 218, 0.85);
  --font-head: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Source Serif 4", "Georgia", serif;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(58, 50, 42, 0.12);
  --shadow-soft: 0 8px 32px rgba(58, 50, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Skip link for tilgængelighed og SEO */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--earth-deep);
  color: var(--stone-light);
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link {
  pointer-events: none;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  pointer-events: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--stone-light);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--earth-dark); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: var(--earth-deep); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--bark-dark); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

/* Header & nav – statisk, ruller med siden */
.site-header {
  padding: 1rem 1.5rem;
  background: #fdfcfa;
  border-bottom: 1px solid var(--earth-warm);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}
.logo-img {
  width: auto;
  max-width: 220px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.nav-main a {
  color: var(--text);
  font-size: 0.95rem;
}

.nav-main a:hover {
  color: var(--accent);
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
}

.lang-toggle button {
  background: transparent;
  border: 1px solid var(--earth-warm);
  color: var(--text-muted);
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: inherit;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--earth-mid);
  color: var(--moon);
  border-color: var(--earth-deep);
}

.lang-toggle button:hover:not(.active) {
  color: var(--text);
  border-color: var(--bark);
}

/* Hero – aflangt bannerbillede */
.hero {
  position: relative;
  min-height: clamp(300px, 42vw, 460px);
  max-height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--earth-sand) url("images/anne_gusmeter_ny.png") center 35% / cover no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(232,228,222,0.25) 0%,
    rgba(217,208,194,0.5) 50%,
    rgba(185,168,152,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0.9rem 2.5rem 1rem;
  max-width: 640px;
  width: 90%;
}

.hero .tagline {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--earth-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,255,255,0.95), 0 0 24px rgba(255,255,255,0.8), 0 1px 2px rgba(0,0,0,0.4);
}

.hero h1 {
  color: var(--earth-dark);
  margin-bottom: 0.5rem;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 0 14px rgba(255,255,255,0.95), 0 0 28px rgba(255,255,255,0.85), 0 1px 3px rgba(0,0,0,0.5);
}

.hero .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.75), 0 1px 2px rgba(0,0,0,0.35);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--moon);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--earth-deep);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(166,139,107,0.12);
}

/* Main content */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section {
  margin-bottom: 3.5rem;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Tydeligere brødtekst i sektioner */
main .section p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Billedsektioner */
.img-section {
  margin: 3rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.img-section img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.img-section figcaption {
  padding: 1rem 1.25rem;
  background: var(--earth-sand);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Profilbillede – rundt og lille (Om Anne) */
.profile-photo {
  margin: 2rem auto 2.5rem;
  text-align: center;
  max-width: 200px;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  display: block;
  margin: 0 auto;
}

.profile-photo figcaption {
  margin-top: 0.75rem;
  padding: 0 0.25rem;
  background: transparent;
  font-size: 0.85rem;
}

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

@media (max-width: 700px) {
  .split-section { grid-template-columns: 1fr; }
}

.split-section .text h2 { margin-top: 0; }
.split-section .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split-section .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Calendar – redesign for bedre overblik */
.calendar-section {
  margin: 3rem 0;
}

.calendar-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 100%;
}

@media (min-width: 900px) {
  .calendar-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .calendar-block {
    flex: 0 0 auto;
    min-width: 320px;
  }
  .calendar-events-block {
    flex: 1;
    min-width: 0;
  }
}

.calendar-block {
  background: linear-gradient(180deg, var(--earth-sand) 0%, var(--earth-warm) 100%);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid var(--earth-mid);
  box-shadow: var(--shadow-soft);
}

.calendar-heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--earth-dark);
  text-align: center;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0 0.25rem;
}

.calendar-nav-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--earth-mid);
  border: none;
  border-radius: 50%;
  color: var(--moon);
  font-size: 1.25rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.calendar-nav-btn:hover {
  background: var(--earth-deep);
  transform: scale(1.05);
}

.calendar-month-year {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--earth-dark);
  text-align: center;
  flex: 1;
  min-width: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--earth-deep);
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-muted);
  border: 1px solid rgba(143, 126, 106, 0.15);
}

@keyframes flame-glow {
  0%, 100% { box-shadow: 0 0 8px 1px rgba(255, 180, 100, 0.2); }
  50% { box-shadow: 0 0 12px 2px rgba(255, 160, 80, 0.3); }
}

.calendar-day.has-gus {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: linear-gradient(180deg, #fff8e7 0%, #f5d9a8 45%, #e8b060 90%, #c4853a 100%);
  color: #2c1810;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(196, 120, 40, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s;
  animation: flame-glow 4s ease-in-out infinite;
}

.calendar-day.has-gus:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(196, 120, 40, 0.25);
}

.calendar-day.has-gus .cal-day-num {
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 1rem;
}

.calendar-day.has-gus .cal-gus-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.95;
}

.calendar-day.has-gus.udsolgt {
  cursor: default;
  opacity: 0.9;
  background: linear-gradient(180deg, #ebe6df 0%, #d9d0c4 50%, #c4bbae 100%);
  border-color: rgba(143, 126, 106, 0.25);
}

.calendar-day.has-gus.udsolgt:hover {
  transform: none;
  box-shadow: none;
}

.cal-moon-icon {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-deep);
  opacity: 0.7;
  pointer-events: none;
}

.cal-moon-icon svg {
  width: 100%;
  height: 100%;
}

.calendar-day.has-gus .cal-moon-icon {
  color: rgba(44, 24, 16, 0.85);
}

.calendar-day.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.calendar-legend {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Events-panel – tydelig liste til højre / nedenunder */
.calendar-events-block {
  background: var(--stone-light);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid var(--earth-warm);
  box-shadow: var(--shadow-soft);
}

.calendar-events-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--earth-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--earth-mid);
}

.calendar-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-event-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--earth-warm);
}

.calendar-event-item:last-child {
  border-bottom: none;
}

.calendar-event-item .calendar-event-info {
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.calendar-event-item.event-udsolgt .calendar-event-info {
  color: var(--text-muted);
}

.calendar-event-book {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--moon);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
}

.calendar-event-book:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.calendar-event-udsolgt {
  flex-shrink: 0;
  padding: 0.4rem 0.8rem;
  background: var(--earth-warm);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  font-style: italic;
}

.calendar-event-empty {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 1rem 0;
  font-style: italic;
}

/* Contact form */
.contact-form-wrap {
  max-width: 560px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(180deg, var(--earth-sand), var(--earth-warm));
  border-radius: 12px;
  border: 1px solid var(--earth-mid);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--earth-deep);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--stone-light);
  border: 1px solid var(--earth-warm);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(196,168,130,0.25);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--earth-deep);
  text-align: center;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--earth-warm);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--earth-warm);
}

.site-footer .footer-logo {
  display: block;
  flex-shrink: 0;
}

.site-footer .footer-logo img {
  width: auto;
  max-width: 160px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Book saunagus – steder & logoer */
.venue-section {
  margin: 2.5rem 0;
}

.venue-section h2 {
  margin-bottom: 1.25rem;
}

.venue-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.venue-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 220px;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--earth-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
}

.venue-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.venue-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.75rem;
  background: #fff;
  border-radius: var(--radius);
}

.venue-card-logo img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.venue-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.venue-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.venue-card-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.venue-card-links a {
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-note {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--earth-warm);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent);
}

.booking-note p {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.booking-note p:last-child {
  margin-bottom: 0;
}

.site-footer .footer-contact {
  font-style: normal;
  line-height: 1.6;
  text-align: left;
}

.site-footer .footer-contact strong {
  color: var(--earth-deep);
  font-size: 1rem;
}

.site-footer .footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer .footer-contact a:hover {
  text-decoration: underline;
}

.site-footer a {
  color: var(--accent);
}

.site-footer .social-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-deep);
  transition: color 0.2s, transform 0.2s;
}

.site-footer .social-links a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.site-footer .social-links a svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Page title (inner pages) */
.page-hero {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, var(--earth-sand) 0%, var(--forest-light) 100%);
  border-bottom: 1px solid var(--earth-warm);
}

.page-hero h1 {
  margin: 0;
  color: var(--earth-dark);
}

.page-hero .page-hero-sub {
  margin-top: 0.5rem;
  color: var(--text-muted);
}

/* Lists */
ul.offer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

ul.offer-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

ul.offer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Rounds / ritual steps */
.ritual-round {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(217,208,194,0.6);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.ritual-round h3 {
  margin-top: 0;
  color: var(--earth-deep);
}

/* Følg mig – flydende Instagram-widget */
.follow-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-sizing: border-box;
}

.follow-widget.visible {
  opacity: 1;
  transform: translateX(0);
}

.follow-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--earth-sand);
  color: var(--earth-deep);
  border: 1px solid var(--earth-mid);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.follow-widget:hover {
  background: var(--earth-warm);
  color: var(--moon);
  box-shadow: var(--shadow);
}

.follow-widget svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 640px) {
  .follow-widget {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
  .follow-widget svg {
    width: 20px;
    height: 20px;
  }
}

/* Utility */
.lang-da { display: none; }
.lang-en { display: none; }
.lang-da.active { display: block; }
.lang-en.active { display: block; }

@media (max-width: 640px) {
  .nav-main {
    width: 100%;
    justify-content: center;
  }
  .calendar-day {
    font-size: 0.75rem;
  }
}
