* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 
  .wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    position: relative;
    z-index: 1;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 10;
  } 
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .slide.active {
    opacity: 1;
  }
  .slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 675px;
    overflow: hidden;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
  }
  .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .logo-overlay img {
    width: 500px;
  }
  .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
  
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  .dots {
    position: absolute;
    bottom: 235px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 11;
  }
  .dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .dot.active {
    background-color: #ffffff;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
  } 
  .logo img {
    height: 40px;
    width: auto;
  }  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  } 
  nav a:hover {
    color: #FBE900;
  } 
  .nav-item {
    display: inline-block;
    margin-right: 15px;
  } 
  .nav-link {
    text-decoration: none;
    font-size: 1.2rem;
  }  
  .text-white {
    color: white;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  } 
  .nav-item {
    position: relative;
    margin-right: 20px;
  }  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    min-width: 180px;
    z-index: 1000;
  } 
  .dropdown-menu li {
    width: 100%;
  } 
  .dropdown-link {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #222;
  }  
  .dropdown-link:hover {
    background-color: #444;
  } 
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  .social-media-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    background-color: #111;
    width: 100%;
  }  
  .empire-name {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 20px;
    
  } 
  .öffnung-name {
    color: #FBE900;
    font-size: 24px;
    font-weight: bold;
    margin-top: -53px;
    margin-left: auto;
    margin-right: 20px;
  }
  .tel-name {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-top: -10px;
    margin-left: auto;
    margin-right: 20px;
  }
  .uhr-name {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-top: -90px;
    margin-left: auto;
    margin-right: 20px;
  }
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: -45px;
    margin-left: 20px;
  }
  .social-icons a {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }
  .social-icons a:hover {
    color: #FBE900;
  }
  footer {
    background-color: #111;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 10;
  }
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px;
        margin-top: -50px;
        margin-bottom: -9px;
    }

  footer nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  footer nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  footer nav a:hover {
    color: #FBE900;
  }
      .cookie-banner-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        z-index: 1000;
      }

      .cookie-banner {
        max-width: 1200px;
        margin: 0 auto;
        color: #fff;
        text-align: center;
      }

      .cookie-banner p {
        margin-bottom: 15px;
      }

      .cookie-banner a {
        color: #fbe900;
        text-decoration: none;
      }

      .cookie-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
      }

      .cookie-button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s;
      }

      .cookie-button.accept {
        background-color: #fbe900;
        color: #111;
      }

      .cookie-button.reject {
        background-color: #444;
        color: #fff;
      }

      .cookie-button:hover {
        opacity: 0.9;
      }

      .hidden {
        display: none;
      }
.burger {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2em;
  }

  .logo img {
    height: 30px;
  }

  .burger {
    display: block;
  }

  nav {
    width: 100%;
    order: 3;
  }

  nav ul {
    flex-direction: column;
    background-color: #222;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    padding: 10px 0;
    gap: 0;
    margin-top: 10px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
    margin: 0;
  }

  .nav-item {
    margin-right: 0;
  }

  .dropdown-menu {
    position: relative;
    display: none;
    background-color: #333;
  }

  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

  .slideshow-wrapper {
    height: 400px;
  }

  .logo-overlay img {
    width: 280px;
  }

  .logo-overlay {
    padding: 15px;
  }

  .dots {
    bottom: 120px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .social-media-container {
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }

  .empire-name {
    margin: 10px 0;
    font-size: 20px;
    text-align: center;
  }

  .öffnung-name {
    margin: 10px 0;
    font-size: 20px;
    text-align: center;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }

  .tel-name {
    margin: 10px 0;
    font-size: 18px;
    text-align: center;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }

  .uhr-name {
    margin: 10px 0;
    font-size: 18px;
    text-align: center;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }

  .social-icons {
    margin: 15px 0;
    justify-content: center;
    position: relative;
    margin-left: 0;
    margin-top: 10px;
  }

  footer {
    padding: 20px 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    margin: 0;
  }

  .footer-content p {
    font-size: 14px;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  footer nav a {
    font-size: 14px;
  }

  section {
    margin: 20px auto;
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  .cookie-banner-wrapper {
    padding: 15px;
  }

  .cookie-banner p {
    font-size: 14px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-button {
    width: 100%;
  }
}