/* ==============================
   GENERELLE STILINDSTILLINGER
   ============================== */
:root {
  --accent-1: #f6c1d9; /* Lyserød accent */
  --accent-2: #f8e6a0; /* Gul accent */
  --muted: #6b6063;    /* Dæmpet tekstfarve */
  --card-bg: rgba(255,255,255,0.9); /* Kort-baggrund */
}

* { box-sizing: border-box; }

body {
  font-family: 'Quicksand', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: #2b2b2b;
  background: linear-gradient(180deg,#fffaf6 0%, #fff 100%); /* Blød baggrund */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; /* Overskrifter */
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.4rem; }

/* Centrer specifikke overskrifter */
.todays-program h2,
.calendar h2 {
  text-align: center;
}

/* ==============================
   HERO / COVERBILLEDE (RESPONSIV)
   ============================== */
.hero {
  width: 100%;
  height: 400px; /* justér højden som du ønsker */
  background: url("images/Cover.svg") no-repeat center center;
  background-size: cover; /* beskær/udfyld som et cover-billede */
  margin: 0;
  padding: 0;
}

/* ==============================
   NAVIGATION
   ============================== */
.main-nav {
  text-align: center;
  margin: 1.5rem 0;
}

.main-nav a {
  font-family: 'Quicksand', sans-serif;
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #c33;
}


/* ==============================
   CONTAINER
   ============================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
}

/* ==============================
   INFO GRID
   ============================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 18px;
  margin: 22px 0;
}

.card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(80,70,70,0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--muted);
}

.small {
  font-size: 13px;
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--accent-1),var(--accent-2));
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 600;
}

/* ==============================
   DAGENS PROGRAM
   ============================== */
.todays-program {
  display: flex;
  flex-direction: column; /* Overskrift over iframe */
  align-items: center;    /* Centrer horisontalt */
}

.todays-program iframe {
  max-width: 100%;
}

/* ==============================
   MAP
   ============================== */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(80,70,70,0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* ==============================
   KALENDER
   ============================== */
.calendar {
  margin-top: 40px;
}

.calendar h2 {
  color: var(--muted);
  margin-bottom: 16px;
}

.calendar-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(80,70,70,0.08);
}

/* ==============================
   GALLERI
   ============================== */
.gallery {
  max-width: 1100px;        /* samme bredde som .container */
  margin: 0 auto;           /* centrer sektionen */
  padding: 0 28px;          /* samme padding som container */
  box-sizing: border-box;
}

.gallery .grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.tile {
  background: linear-gradient(180deg,rgba(255,255,255,0.8),rgba(248,246,246,0.6));
  border-radius: 18px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  text-align: left;
  color: #666;
  margin: 36px 0 60px;
}

/* ==============================
   RESPONSIVE TILPASNINGER
   ============================== */
@media (max-width:720px){
  .hero-svg { max-height: 280px; } /* Begræns højden på mobil */
  h1 { font-size: 1.8rem; }
}
