body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  position: relative;
  height: 100vh;
  overflow-y: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/baggrund.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(6px) brightness(0.5);
  z-index: -1;
}

/* ----------- Header / Top-bar ----------- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 10px 20px;
}

.logo-placeholder img {
  max-height: 100px;
  width: auto;
  display: block;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 1em;
}

.contact-info i {
  color: #ff0011;
  margin-right: 5px;
}

/* ----------- Menu / Navbar ----------- */
.navbar {
  background-color: #111;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu > li > span,
.dropdown-menu li > a,
.dropdown-submenu li > a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
}

.menu > li > a:hover,
.menu > li > span:hover,
.dropdown-menu li > a:hover,
.dropdown-submenu li > a:hover {
  background-color: #222;
}

.dropdown-menu,
.dropdown-submenu {
  display: none;
  position: absolute;
  background-color: #111;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
  z-index: 999;
}

.dropdown-menu li,
.dropdown-submenu li {
  position: relative;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-sub:hover > .dropdown-submenu {
  display: block;
  left: 100%;
  top: 0;
}

.no-link {
  cursor: default;
  background-color: #111;
}

.no-link:hover {
  background-color: #222;
}

/* ----------- Hero Section ----------- */
.hero-section h1 {
  font-size: 2.2rem;
  margin: 0.5em 0;
}

.hero-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5em;
  color: #ccc;
}

/* ----------- Buttons & Address ----------- */
.home-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.home-buttons .btn {
  background-color: #ff0011;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.home-buttons .btn:hover {
  background-color: #cc000e;
}

.home-buttons .address {
  color: white;
  font-size: 1.1em;
}

/* ----------- Opening Hours List ----------- */
.open-hours-list {
  list-style: none;
  padding: 0;
  font-size: 1.2em;
  line-height: 2;
}

.no-bullets {
  list-style: none;
  padding-left: 0;
}

/* ----------- Gallery ----------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
  text-align: center;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ----------- Menu Toggle (Burger) ----------- */
.menu-toggle {
  display: none;
  position: relative;
  margin: 20px auto 10px auto;
  font-size: 28px;
  color: rgb(126, 3, 3);
  text-align: center;
  z-index: 1000;
}

/* ----------- Dropdown spacing tweaks ----------- */
.bilpleje-menu > .dropdown-sub {
  margin-bottom: 0;
  padding: 0;
}

.bilpleje-menu > .dropdown-sub > span {
  padding: 15px 20px;
  display: block;
  color: white;
  cursor: default;
  background-color: #7c0000;
}

.bilpleje-menu > .dropdown-sub > span:hover {
  background-color: #222;
}

/* ----------- Layout ----------- */
main, section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100dvh;
}

/* ----------- Responsive / Mobile ----------- */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
    font-size: 0.95em;
  }

  .logo-placeholder img {
    max-height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background-color: #000000;
    position: fixed;
    top: 120px;
    right: 0;
    width: 250px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 999;
  }

  .menu.open {
    display: flex;
  }

  .menu > li {
    width: 100%;
  }

  .menu > li > a,
  .menu > li > span {
    padding: 15px 20px;
    border-bottom: 1px solid #b30000;
  }

  .dropdown-menu,
  .dropdown-submenu {
    position: static;
    background-color: #222;
    display: none;
    padding-left: 15px;
    min-width: auto;
    box-shadow: none;
  }

  .dropdown.open > .dropdown-menu,
  .dropdown-sub.open > .dropdown-submenu {
    display: block;
  }

  .dropdown > span.no-link::after,
  .dropdown-sub > span::after {
    content: '\25BC';
    float: right;
    margin-left: 10px;
    font-size: 0.8em;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .home-buttons .btn {
    width: 90%;
    max-width: 300px;
    text-align: center;
  }

  iframe {
    max-width: 100%;
    border-radius: 8px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: auto;
  }
}
/* Gælder for alle sider */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #222; /* eller din ønskede baggrund */
  color: #fff;
}

main, .hero-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(0,0,0,0.7); /* valgfrit for kontrast */
  overflow-x: auto;
}