@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #333;
  }
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .slideshow-container img {
    position: absolute;
    top: 0;          /* Sørg for at billeder starter øverst */
    left: 0;         /* Sørg for at billeder starter fra venstre */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Dækker hele containeren uden at ændre billedforhold */
    filter: blur(3px);
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .slideshow-container img.active {
    opacity: 1;
  }

  .slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-size: 2rem;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
  }
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: #0b1f3a;
  color: white;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  height: 42px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #00e676;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Header */
header {
  background: linear-gradient(135deg, #003366, #0055aa);
  color: white;
  text-align: center;
  padding: 10px 0px;
}
header h1 {
  font-size: 3rem;
  font-weight: 700;
}
header p {
  font-size: 1.2rem;
  margin-top: 12px;
}
.cta {
  margin-top: 24px;
  display: inline-block;
  background: linear-gradient(to right, #00e676, #00c853);
  padding: 14px 28px;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta:hover {
  background: linear-gradient(to right, #00c853, #00e676);
}

/* Sektioner */
section {
  padding: 60px 20px;
  background: white;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #003366;
}

/* Features og sikkerhed */
.features ul, .security ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.features li, .security li {
  background: #f0f4f8;
  padding: 15px 20px;
  border-left: 5px solid #00c853;
  border-radius: 6px;
}

/* Pakker */
.packages table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.packages th, .packages td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: center;
}
.packages th {
  background: #003366;
  color: white;
}
.packages td {
  background: #f9f9f9;
}

/* Kontakt */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}
.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact button {
  padding: 14px;
  background: #003366;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact button:hover {
  background: #001f4d;
}

/* Footer */
footer {
  background: #0b1f3a;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Mobilvenlighed */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    background: #0b1f3a;
    margin-top: 10px;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
