


body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right top, #f7ff00, #ffcf00, #ff9b00, #ff620d, #ff0033);
    margin: 0;
    padding: 0;
}


.navigation {
    background-color: #222;
    padding: 15px;
    text-align: center;
}

.navigation .btn {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in;
}

.navigation .btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
    background: #fff;
}

.logo img {
    max-width: 300px;
    border-radius: 10px;
}

.titel {
    flex: 1;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

.titel-content h1 {
    font-size: 48px;
    margin: 0;
    color: #222;
    font-weight: 900;
    animation: colorPulse 3s infinite;
}

.titel-content .highlight {
    background: linear-gradient(90deg, #00c3ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.titel-content h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #444;
}

.titel-content p {
    font-size: 18px;
    color: #555;
}

.titel-bilder {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.titel-bilder img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.titel-bilder img:hover {
    transform: scale(1.05);
}

/* Farbanimation für h1 */
@keyframes colorPulse {
    0% { text-shadow: 0 0 5px #00c3ff; }
    50% { text-shadow: 0 0 20px #ff00c8; }
    100% { text-shadow: 0 0 5px #00c3ff; }
}


.content {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    background-color: #f9f9f9;
}

.middle {
    flex: 1;
    max-width: 400px;
    margin-right: 20px;
}

.middle form {
    display: flex;
    flex-direction: column;
}

.middle label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.middle input, .middle select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease;
}

.submit-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

.social-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 200px;
    text-align: left;
    font-size: 16px;
    animation: fadeInUp 0.7s ease;
}

.social-btn i {
    margin-right: 10px;
}

.social-btn:hover {
    background: #555;
    transform: translateX(10px);
}

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

.footer-btn {
    background-color: #17a2b8;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
    animation: fadeIn 1s ease-in;
}

.footer-btn:hover {
    background-color: #138496;
    transform: scale(1.05);
}

/* Animationen */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner, .content {
        flex-direction: column;
        align-items: center;
    }

    .middle, .right {
        max-width: 100%;
        padding: 0;
    }

    .right {
        align-items: center;
    }

    .social-btn {
        width: 80%;
        text-align: center;
    }
}
.video {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.video h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #222;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.trailer {
    margin-top: 30px;
    width: 100%;
}

.trailer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.trailer .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.trailer .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.kontakt-info {
    background-color: #ffffffcc;
    padding: 40px 20px;
    text-align: center;
}

.kontakt-info h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #222;
}

.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.kontakt-details {
    flex: 1;
    max-width: 400px;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
}

.kontakt-details a {
    color: #007bff;
    text-decoration: none;
}

.kontakt-details a:hover {
    text-decoration: underline;
}

.karte {
    flex: 1;
    max-width: 500px;
}
.trailer {
    margin-top: 20px;
    width: 50%;
}

.trailer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    text-align: center;
}

.trailer .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px; /* <- hier die Maximalbreite größer machen */
    margin: 0 auto; /* zentriert das Video */
}

.trailer .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.zahlung {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
}

.zahlung h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}

.zahlungsmethoden {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.zahl-btn {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease;
}

.zahl-btn i {
    font-size: 20px;
}

.zahl-btn.paypal {
    background-color: #003087;
}

.zahl-btn.kreditkarte {
    background-color: #28a745;
}

.zahl-btn.applepay {
    background-color: #000;
}

.zahl-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.galerie {
    padding: 2rem;
    text-align: center;
    background-color: #111;
    color: #fff;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.galerie-bild {
    width: 100%;
    border: 2px solid #444;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galerie-bild:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}

.lightbox-navigation button {
    background: none;
    border: none;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    padding: 0 1rem;
}



.beschreibung {
animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
 0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}

.beschreibung h2 {
font-size: 48px;
margin: 0;
color: #20a106;
 font-weight: 700;
animation: colorPulse 4s infinite;
}

@keyframes colorPulse {
0%, 130% { color: #e0eff0; }
50% { color: #257306; }
}

.beschreibung p {
 animation: fadeInUp 4s ease 4s;
}

.beschreibung strong {
 background: linear-gradient(70deg, #06a700, #bf05b6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

