/* =========================================================
   Prinsen & Prinsessen — design tokens (pink & sky-blue, à la logo)
   ========================================================= */
:root {
  --cream:      #FFFBF8;
  --cream-2:    #FCE9F2;

  --pink:       #EC8FBE;   /* primary rose pink */
  --pink-deep:  #C8628F;   /* deeper pink — text, hover, contrast */
  --pink-soft:  #FCE4F1;   /* pale pastel pink — surfaces */

  --blue:       #63BFDC;   /* secondary sky blue */
  --blue-deep:  #3D93AF;   /* deeper blue — text, hover, contrast */
  --blue-soft:  #DFF4FA;   /* pale pastel blue — surfaces */

  --ink:        #4A3B52;   /* muted plum-grey body text */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
#indhold { scroll-margin-top: 12px; }

body {
  font-family: "Quicksand", sans-serif;
  color: var(--ink);
  background-color: var(--cream);
}

.poetsen {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gummy {
  font-family: "Sour Gummy", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.textshadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.color   { background-color: var(--pink); }
.tcolor  { color: var(--pink-deep); }

.name-blue  { color: var(--blue-deep); }
.name-pink  { color: var(--pink-deep); }
.name-blue-light { color: #BFEAF5; }
.name-pink-light { color: #FBDCEC; }

.custom-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.hover-bounce:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.soft-shadow { box-shadow: 0 4px 14px rgba(200, 98, 143, 0.18); }

.hard-shadow { box-shadow: 2px 4px 16px rgba(74, 59, 82, 0.25); }

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary {
  background-color: var(--pink-deep);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(200, 98, 143, 0.35);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background-color: var(--blue-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(61, 147, 175, 0.4);
}
.btn-primary i { transition: transform 0.25s ease; display: inline-block; }
.btn-primary:hover i { transform: translateX(4px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  position: relative;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 20px;
  background-image: radial-gradient(circle at 20px 0, transparent 19px, var(--cream) 20px);
  background-size: 40px 20px;
  background-repeat: repeat-x;
}
.phone-pill {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-pill:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* =========================================================
   Hero decorations — floating hand-cut confetti
   ========================================================= */
.hero-wrap { position: relative; overflow: visible; }

.hero-wrap::before {
  content: "";
  position: absolute;
  top: -60px; left: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-wrap::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-viewport {
    min-height: calc(100svh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-viewport { min-height: calc(100svh - 120px); display: flex; flex-direction: column; justify-content: center; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--pink-deep);
}
.scroll-cue-label {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: color 0.2s ease;
}
.scroll-cue-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--pink-deep);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.85;
  transition: border-color 0.2s ease;
}
.scroll-cue-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink-deep);
  animation: scroll-dot 1.7s ease-in-out infinite;
}
.scroll-cue:hover .scroll-cue-mouse { border-color: var(--blue-deep); }
.scroll-cue:hover .scroll-cue-label { color: var(--blue-deep); }
.scroll-cue:hover .scroll-cue-dot { background: var(--blue-deep); }

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(13px); }
  100% { opacity: 0; transform: translateY(0); }
}

.confetti {
  position: absolute;
  border-radius: 50%;
  opacity: 0.65;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.confetti.c1 { width: 22px; height: 22px; background: var(--blue); top: -10px; left: 8%; animation-delay: 0s; }
.confetti.c2 { width: 14px; height: 14px; background: var(--pink-deep); top: 40%; left: -18px; animation-delay: 1.2s; }
.confetti.c3 { width: 18px; height: 18px; background: var(--blue-deep); bottom: 6%; left: 20%; animation-delay: 2.1s; }
.confetti.c4 { width: 26px; height: 26px; background: var(--pink-soft); top: 10%; right: -12px; animation-delay: 0.6s; }
.confetti.c5 { width: 16px; height: 16px; background: var(--blue-soft); bottom: -8px; right: 18%; animation-delay: 1.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.hero-frame {
  position: relative;
  border-radius: 2rem;
  padding: 10px;
  background: linear-gradient(160deg, var(--blue) 0%, var(--pink) 100%);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.hero-frame:hover { transform: rotate(0deg); }
.hero-frame img {
  border-radius: 1.6rem;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pink-soft);
  color: var(--pink-deep);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  width: fit-content;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-deep);
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.squiggle { display: block; margin: 0.25rem 0 1rem; }
.squiggle path {
  stroke: var(--blue);
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
}

/* =========================================================
   Info cards
   ========================================================= */
.info-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid var(--pink-soft);
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(200, 98, 143, 0.2);
}
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.icon-badge.blue {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

/* receipt-style dashed rows for pricing */
.receipt-row {
  border-top: 2px dashed var(--cream-2);
  padding: 0.65rem 0;
}
.receipt-row:first-child { border-top: none; }
.receipt-total .amount {
  font-family: "Poetsen One", sans-serif;
  color: var(--pink-deep);
  font-size: 1.15rem;
}

/* timetable rows */
.time-row:nth-child(odd) { background: var(--blue-soft); }
.time-row {
  border-radius: 0.75rem;
  padding: 0.5rem 0.85rem;
}

/* featured "ledige pladser" card */
.feature-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
}
.feature-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(99,191,220,0.1) 0%, rgba(200,98,143,0.92) 100%);
}
.ribbon {
  position: absolute;
  top: 18px;
  left: -34px;
  background: var(--blue-deep);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 2.5rem;
  transform: rotate(-40deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 20;
}

/* =========================================================
   Scalloped section divider (paper-cut signature)
   ========================================================= */
.scallop-divider {
  height: 26px;
  width: 100%;
  background-image: radial-gradient(circle at 13px 0, transparent 12px, var(--pink) 13px);
  background-size: 26px 26px;
  background-repeat: repeat-x;
  background-color: var(--cream);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: linear-gradient(160deg, var(--pink) 0%, var(--blue) 100%);
  color: #fff;
}
.site-footer a { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }
.footer-card {
  background: rgba(255,255,255,0.16);
  border-radius: 1.5rem;
  padding: 1.25rem;
}

/* =========================================================
   Accessibility & motion
   ========================================================= */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .confetti, .eyebrow .dot, .hover-bounce:hover, .hero-frame, .info-card, .btn-primary, .scroll-cue, .scroll-cue-dot {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .ribbon { top: 14px; left: -40px; font-size: 0.7rem; padding: 0.35rem 2.4rem; }
}
