html {
  scroll-behavior: smooth;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fafafa;
}


:root {
  --nav-height: 72px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;     
  z-index: 1000;
  gap: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: bold;
}

.dagens-kompliment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fdfcfb 0%, #fef2f0 50%, #fdfcfb 100%);
}

.kompliment-wrapper {
  position: relative;
  max-width: 42rem;
  width: 100%;
  animation: fadeInUp 0.7s ease-out;
}

.kompliment-wrapper::before,
.kompliment-wrapper::after {
  display: none;
}

.kompliment-kort {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  box-shadow: 
    0 15px 30px -10px rgba(219, 89, 109, 0.12),
    0 8px 16px -6px rgba(219, 89, 109, 0.08);
  border: 1px solid rgba(219, 89, 109, 0.15);
}

.kompliment-ikon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.kompliment-ikon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #db596d 0%, #eb7864 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(219, 89, 109, 0.35);
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.kompliment-overskrift {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 1.25rem;
}

.kompliment-modtager-wrapper {
  text-align: center;
  margin-bottom: 1rem;
}

.kompliment-modtager-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(90deg, rgba(219, 89, 109, 0.12) 0%, rgba(235, 120, 100, 0.12) 100%);
  border-radius: 50px;
}

.kompliment-modtager-navn {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #db596d;
}

.kompliment-citat {
  position: relative;
  padding: 0 1.25rem;
  margin: 0;
}

.kompliment-citat::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 0;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: rgba(219, 89, 109, 0.2);
  line-height: 1;
}

.kompliment-citat::after {
  content: '"';
  position: absolute;
  bottom: -1.25rem;
  right: 0;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: rgba(219, 89, 109, 0.2);
  line-height: 1;
  transform: rotate(180deg);
}

.kompliment-tekst {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #2d2d2d;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.kompliment-dekoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.kompliment-linje {
  height: 1px;
  width: 2rem;
  background: linear-gradient(90deg, transparent, rgba(219, 89, 109, 0.4));
}

.kompliment-linje:last-child {
  background: linear-gradient(90deg, rgba(219, 89, 109, 0.4), transparent);
}

.kompliment-prik {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(219, 89, 109, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .dagens-kompliment {
    padding: 2.5rem 1.5rem;
  }
  
  .kompliment-kort {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
  }
  
  .kompliment-ikon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.25rem;
  }
  
  .kompliment-overskrift {
    font-size: 1rem;
  }
  
  .kompliment-modtager-navn {
    font-size: 1.75rem;
  }
  
  .kompliment-citat {
    padding: 0 2rem;
  }
  
  .kompliment-citat::before,
  .kompliment-citat::after {
    font-size: 3.5rem;
  }
  
  .kompliment-tekst {
    font-size: 1.75rem;
  }
  
  .kompliment-wrapper::before,
  .kompliment-wrapper::after {
    display: block;
  }
  
  .kompliment-wrapper::before {
    top: -3rem;
    left: -3rem;
    width: 6rem;
    height: 6rem;
    background: rgba(219, 89, 109, 0.15);
    filter: blur(40px);
  }
  
  .kompliment-wrapper::after {
    bottom: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(235, 120, 100, 0.15);
    filter: blur(40px);
  }
}

@media (min-width: 1024px) {
  .kompliment-kort {
    padding: 3rem;
  }
  
  .kompliment-ikon {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
  }
  
  .kompliment-modtager-navn {
    font-size: 2rem;
  }
  
  .kompliment-tekst {
    font-size: 2rem;
  }
}





.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  min-width: 0; 
}

.logo img {
  height: 48px;  
  border-radius: 5px;
  margin-right: 10px;
  flex-shrink: 0;
}

#logo-title {
  font-size: 1.2rem;
  margin: 0;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}


.menu {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap; 
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap; 
}

.nav-link:hover {
  color: #0f62fe;
}

main {
  padding-top: calc(var(--nav-height) + 1rem); 
  max-width: 800px;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}


@media (max-width: 700px) {
  :root { --nav-height: 64px; } 

  #logo-title { font-size: 1rem; }

  .menu {
    gap: 0.6rem;
  
  }

  .logo img { height: 42px; }
}

.menu-toggle {
  display: none; 
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
}

.menu-toggle:focus { outline: 3px solid rgba(15,98,254,0.12); }

.trestreger {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  position: relative;
}
.trestreger::before,
.trestreger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #222;
}
.trestreger::before { top: -7px; }
.trestreger::after  { top: 7px; }


@media (max-width: 700px) {
  .menu {
    display: none;           
  }

  .menu-toggle {
    display: inline-flex;    
    margin-left: auto;
  }


  .logo { gap: 8px; }


  .menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 12px 30px rgba(2,6,23,0.08);
    padding: 10px 16px 18px 16px;
    gap: 8px;
    z-index: 1200;
  }

  .menu.mobile-active .nav-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #222;
    font-weight: 700;
    text-decoration: none;
  }

  .menu.mobile-active .nav-link:hover {
    background: rgba(0,0,0,0.04);
  }


  #logo-title {
    max-width: calc(100vw - 120px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}



:root {
  --nav-height: 72px; 
}

html, body {

  overflow-x: hidden;
}

.hero-slider {
  margin-top: var(--nav-height); /* flyt slider ned så header ikke overlapper */
  background-color: transparent; /* fjern sort baggrund som gav streg */
  -webkit-backface-visibility: hidden; /* mindske subpixel rendering glitches */
  backface-visibility: hidden;
  overflow: hidden; /* vigtig */
  -webkit-overflow-scrolling: touch;
}

.hero-slider {
  margin-bottom: 0;
}

main h2:first-of-type {
  margin-top: 0px;
}

main {
  padding-top: calc(var(--nav-height) + 0rem);
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;      /* centrerer billedet vertikalt */
  justify-content: center;  /* centrerer billedet horisontalt */
  background-color: #000;   /* valgfri - ser pænere ud bag billeder med anderledes ratio */
  overflow: hidden;
}



.hero-slide img {
  display: block;       /* fjerner inline-gap */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - var(--nav-height)); /* undgå at billedet går bag header */
  object-fit: contain;
}



.hero-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 6;
}


.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.55);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }


.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.hero-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  opacity: 0.85;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
}

.hero-dot.active {
  opacity: 1;
  transform: scale(1.25);
  background: #ffffff; border: #333;
}

@media (max-width: 700px) {
  .hero-slide img {
    max-height: 55vh;      
  }
}

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(0,0,0,0.32);
  }

  .hero-arrow--prev { left: 8px; }
  .hero-arrow--next { right: 8px; }

  .hero-dots { bottom: 10px; gap: 6px; }
  .hero-dot { width: 9px; height: 9px; }



@media (max-width: 700px) {
  .hero-arrow { display: none; }
} 


/* slørrede søjler*/
/* sørg for .hero-slide er position:relative (du har det allerede) */
.hero-slide {
  position: relative;
  overflow: hidden;
}

/* sløret baggrund */
.hero-slide::before{
  background-image: var(--bg-url);
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* ligger bag billedet */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(28px) saturate(1.05);
  transform: scale(1.08); /* undgå "kanter" efter blur */
  transition: opacity .35s ease;
  opacity: 1;
  pointer-events: none;
}

/* sørg for billedet ligger over pseudo-elementet */
.hero-slide img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - var(--nav-height));
  object-fit: contain;
  background: transparent;
}

/* caption og pile over alt */
.hero-caption { z-index: 6; }
.hero-arrow { z-index: 12; }







/* velkommen*/

.Velkommen {


  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #100c0c;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 10px;

  border-radius: 10px;

}

#velkomment1 {

  color: black;
  background-color: whitesmoke;
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  width: fit-content;
}

#velkommenimg {
  height: 150px;
  border-radius: 10px;
  margin-left: 20px;            
}

/*  Kanylen: Magasin mockup*/
:root {
  --kanylen-pink: #ff3366;
  --kanylen-soft: #fff3a3;
  --kanylen-mørk: #222;
  --card-shadow: 0 14px 36px rgba(2,6,23,0.06);
}

.udgivelser-mag {
  max-width: 1100px;
  margin: 22px auto;
  padding: 10px 16px;
}

.mag-title {
  margin: 6px 0 14px 6px;
  font-size: 1.35rem;
  color: var(--kanylen-mørk);
  letter-spacing: 0.15px;
}

.mag-row {
  display: flex;
  gap: 22px;
  align-items: center;
  background: linear-gradient(180deg,#fffdfb 0%, #ffeb99 1000%);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.035);
}

.mag-cover-wrap {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  transform: rotate(-3deg);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg,#fff,#fff8e8);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.03);
}

.mag-cover {
  width: 100%;
  height: auto;
  display: block;

}

.mag-cover-wrap figcaption {
  padding: 8px 12px;
  font-size: 0.94rem;
  color: #444;
  background: rgba(255,255,255,0.9);
}

.mag-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.mag-desc {
  margin: 0;
  color: #333;
  line-height: 1.45;
  font-size: 1rem;
}

.mag-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 0.92rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mag-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  font-family: inherit;
  font-size: 0.96rem;
}


.btn.download {
  background: linear-gradient(180deg, var(--kanylen-pink), #e21f52);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,51,102,0.12);
}


.btn.ghost {
  background: transparent;
  color: var(--kanylen-mørk);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 9px 12px; 
}


.btn svg { width: 18px; height: 18px; display: inline-block; }


.btn.download:hover, .btn.download:focus { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(226,31,82,0.15); outline: none; }
.btn.ghost:hover, .btn.ghost:focus { transform: translateY(-2px); background: rgba(0,0,0,0.03); outline: none; }


.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(255,51,102,0.12);
  outline: none;
}


.mag-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: linear-gradient(180deg, var(--kanylen-pink), #e21f52);
  color: #fff;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.6px;
  z-index: 6;
  box-shadow: 0 8px 22px rgba(255,51,102,0.14);
}


.mag-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,12,0.65);
  z-index: 2200;
  padding: 24px;
}
.mag-lightbox[aria-hidden="false"] { display:flex; }

.mag-lightbox-inner {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(2,6,23,0.28);
}
.mag-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--kanylen-mørk);
  padding: 8px;
  border-radius: 6px;
}
.mag-close:hover { background: rgba(0,0,0,0.04); }

.mag-light-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}


@media (max-width: 700px) {
  .mag-row { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .mag-cover-wrap { width: 70%; transform: none; box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
  .mag-cover-wrap figcaption { text-align: center; }
  .mag-info { align-items: center; }
  .mag-actions { justify-content: center; width: 100%; flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .mag-cover-wrap { width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .mag-actions { flex-direction: column; gap: 10px; width: 100%; }
}

/*bundinfo */
.bundinfo {
  background: linear-gradient(180deg, #ffffff 0%, #ffeb99 1000%);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 40px;
  padding: 30px 20px;
  color: #333;
  font-family: Arial, sans-serif;
}

.bundindre {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 25px;
}

/* --- OM-SEKTION --- */
.bundlogo img {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.bundom p {
  margin: 6px 0;
  line-height: 1.4;
}

.bundom .lille {
  font-size: 0.9rem;
  color: #555;
}

/* --- LINKS-SEKTION --- */
.bundlinks h4,
.bundsocialemedier h4 {
  margin-bottom: 8px;
  color: #ff3366;
  font-size: 1rem;
}

.bundlinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bundlinks li {
  margin: 6px 0;
}

.bundlinks a {
  text-decoration: none;
  color: #0077ff;
}

.bundlinks a:hover {
  color: #ff3366;
  text-decoration: underline;
}

/* --- SOCIAL MEDIA --- */
.socialemedier {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.socialemedier img {
  height: 40px;
  transition: 0.2s ease;
}

.socialemedier img:hover {
  transform: scale(1.1);
}

/* --- BUNDENS BUND  */
.bundensbund {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.bundensbund a {
  color: #333;
  text-decoration: none;
}

.bundensbund a:hover {
  color: #ff3366;
  text-decoration: underline;
}


/* --- “TIL TOPPEN” KNAP --- */
.tiltop {
  margin-top: 12px;
  background: #ff3366;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  background-image: url('data:image/svg+xml,\
  <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="white">\
  <path d="M10 4l6 7H4l6-7z"/></svg>');
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.tiltop:hover {
  background: #e82d5d;
  transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
  .bundindre {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socialemedier {
    justify-content: center;
  }
}


/* ===== Kanylen: Nyheder grid (kort med store billeder) ===== */
:root{
  --opslag-max-width:1100px;
  --opslag-gap:36px;
  --opslag-card-radius:10px;
  --opslag-card-shadow:0 10px 28px rgba(2,6,23,0.06);
  --opslag-accent:#f3f3f3;
  --opslag-title-color:#000000;
  --opslag-text-color:#111;
  --opslag-meta-color:#667;
}

/* wrapper */
.opslag{ max-width:var(--opslag-max-width); margin:28px auto; padding:0 16px; }
.opslagindre{ padding:6px 0 18px; }
.opslagtitel{ margin:4px 0 18px 4px; color:var(--opslag-title-color); font-size:1.5rem; letter-spacing:0.2px; }

/* grid */
.opslaggitter{ display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:var(--opslag-gap); align-items:start; }

/* card */
.opslagkort{
  background:#fff;
  border-radius:var(--opslag-card-radius);
  overflow:hidden;
  box-shadow:var(--opslag-card-shadow);
  border:1px solid rgba(0,0,0,0.04);
  transition:transform 200ms ease, box-shadow 200ms ease;
  display:flex;
  flex-direction:column;
}

/* whole-card link */
.opslaglink{ display:block; color:inherit; text-decoration:none; height:100%; }

/* IMAGE CONTAINER: fixed visual area */
.opslagmedie{
  width:100%;
  height:300px;            /* desktop visual height */
  overflow:hidden;
  background:var(--opslag-accent);
  position:relative;
  display:block;
}

/* IMAGE: ensure it fills and crops centrally */
.opslagmediebillede{
  display:block;
  width:100%;
  height:100%;
  max-width:none;         /* important: override global img rules */
  object-fit:cover;
  object-position:center center;
  border-radius:0;
 
}

/* optional subtle overlay for contrast */
.opslagmedie::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:26%;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 100%);
  pointer-events:none;
}

/* text area */
.opslagundertitel{ padding:12px 14px; background:#fff; display:flex; flex-direction:column; gap:6px; }
.opslagundertitel h3{ margin:0; font-size:1.05rem; color:var(--opslag-text-color); line-height:1.25; word-break:break-word; }
.opslagundertitel time{ font-size:0.85rem; color:var(--opslag-meta-color); }

/* hover */
.opslagkort:hover{ transform:translateY(-6px); box-shadow:0 16px 40px rgba(2,6,23,0.08); }

/* responsive */
@media (max-width:980px){ .opslagmedie{ height:260px; } .opslaggitter{ gap:20px; } }
@media (max-width:700px){ .opslaggitter{ grid-template-columns:1fr; } .opslagmedie{ height:220px; } .opslag{ padding:0 12px; } .opslagundertitel{ padding:10px 12px; } }
@media (max-width:420px){ .opslagmedie{ height:200px; } .opslagtitel{ font-size:1.15rem; } }

.læsmed{ margin-top:25px; }



/* NAV BAR LYS */

.navbar-stroke-svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 9999; 
}

.navbar-stroke-svg rect {
  fill: none;
  stroke: #fcd538;
  stroke-width: 3px;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 60px #ffeb99);
}


.velk-btn,
#velkomment1 {
  color: black;
  background-color: whitesmoke;
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  width: fit-content;
  border: none;
  font-weight: 400;         
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}


.velk-btn:focus {
  outline: 3px solid #ffeb99;
  outline-offset: 2px;
}

/* tryk-effekt */
.velk-btn:active {
  transform: translateY(1px);
}