body {margin:0;font-family:Arial;background:#f5f5f5}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* HOVER HINWEIS */
.flyer-img {
    cursor: pointer;
    transition: 0.3s;
}

.flyer-img:hover {
    transform: scale(1.03);
}

.flyer-img {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.flyer-img:hover {
    transform: scale(1.03);
    transition: 0.3s;
}
.Rgo-img {
    width: 100%;
    max-width:350px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.anras-img {
    width: 30%;
    max-width:350px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* FLYER PREMIUM */
.flyer-section {
    padding: 30px;
}

.flyer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* IMAGE */
.flyer-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.flyer-right h2 {
    color: #c62828;
    margin-bottom: 10px;
  text-align: left;
}

.flyer-right ul {
    margin-top: 10px;
    padding-left: 20px;
    line-height: 1.8;
   text-align: left;
}

/* MOBILE */
@media(max-width: 768px) {
    .flyer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flyer-img {
        margin: auto;
    }
  .logo {
        height: 50px;
    }
   .menu-toggle {
        display: block;
      font-size: 26px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 10px;
        background: white;
        flex-direction: column;
        width: 220px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        padding: 10px;
        z-index: 2000;
    }
 .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

   
}
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    z-index: 1000;
}

.logo {
    height: 80px;
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

/* DESKTOP */
.nav-links {
    display: flex;
    gap: 20px;
}

/* MOBILE FIX */
@media(max-width: 768px) {

    .nav-links {
        display: none !important;  /* ❗ DAS IST DER FIX */
    }

    .nav-links.show {
        display: flex !important;
        flex-direction: column;
    }

}

.nav-links a {
    text-decoration:none;
    color:#333;
    padding:8px 12px;
    border-radius:6px;
    transition:0.3s;
}

.nav-links a:hover {
    background:#f5f5f5;
    color:#c62828;
}

/* HERO */
.hero {
    position: relative;
    height: 40vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    overflow:hidden;
}

.hero-video {
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.6;
}

.hero-overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content {
    position:relative;
    z-index:2;
}

/* CONTENT */
.container {
    max-width:1100px;
    margin:auto;
    padding:20px;
}

.card {
  
    background:white;
  text-align: center;
    padding:20px;
    margin:20px 0;
    border-radius:10px;
}
.card h2 {
    color: #c62828;
    margin-bottom: 10px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #c62828;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}