.lang-switch button {
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 6px;
    margin: 5px;
    background: #222;
    color: white;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Hover effekt */
.lang-switch button:hover {
    background: #555;
}

/* Aktiv sprog med pop-animation */
    .lang-switch button.active {
    background: #E4405F;
    font-weight: bold;
    transform: scale(1.1); /* popper lidt op */
    box-shadow: 0 4px 10px rgba(228, 64, 95, 0.5);
}

/*Fremhævelse af billeder*/

.zoom-img{
    cursor:pointer;
    transition:0.3s ease;
}
.zoom-img:hover{
    transform:scale(1.04);
}

/* Overlay */
#imgOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    pointer-events:none;
    transition:0.35s ease;
    z-index:9999;
}
#imgOverlay.active{
    opacity:1;
    pointer-events:all;
}

/* Image */
#overlayImg{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 0 70px rgba(0,0,0,0.6);
    transform:scale(0.9);
    transition:0.35s ease;
}
#imgOverlay.active #overlayImg{
    transform:scale(1);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
    padding: 10px;
    border-radius: 50%;
}

.arrow:hover {
    color: white;
    background: rgba(0,0,0,0.3);
}

#leftArrow { left: 20px; }
#rightArrow { right: 20px; }

/* Footer */

body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    footer {
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    footer h2 {
      margin-bottom: 20px;
      font-size: 1.5em;
    }

    footer p {
      margin: 5px 0;
      font-size: 1em;
    }

    footer a {
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s;
    }

    footer a:hover {
      color: #fff;
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 5px 0;
    }

    .material-icons {
      font-size: 20px;
    }

    /* menu */

    * {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: Arial, sans-serif;
  /*background:#0f0f0f;*/
  /* color:white; */
}

/* NAVIGATION */
nav {
  background:#111;
  padding:20px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-weight:bold;
  letter-spacing:2px;
}

.menu {
  list-style:none;
  display:flex;
  gap:30px;
  align-items:center;
}

.menu li {
  position:relative;
}

.menu a {
  text-decoration:none;
  color:white;
  font-size:14px;
  text-transform:uppercase;
  transition:0.3s;
}

.menu a:hover {
  color:#00d4ff;
}

/* DROPDOWN */
.dropdown-menu {
  display:none;
  position:absolute;
  top:25px;
  left:0;
  background:#1a1a1a;
  padding:10px 0;
  list-style:none;
  min-width:150px;
}

.dropdown-menu li {
  padding:8px 20px;
}

.dropdown-menu li a {
  font-size:13px;
}

.dropdown:hover .dropdown-menu {
  display:block;
}

nav {
  position: fixed;   /* menuen sidder fast */
  top: 0;            /* øverst på siden */
  left: 0;
  width: 100%;       /* fylder hele bredden */
  background: rgba(0,0,0,0.8);  /* semi-transparent baggrund */
  backdrop-filter: blur(8px);    /* giver lidt glass-effect */
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;     /* ligger altid ovenpå alt indhold */
}

