/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #121212;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Hero Sektion */
.hero {
    min-height: 100vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo {
    width: 300px;
    height: auto;
    max-width: 80vw;
    margin-bottom: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #000;
}

.btn-prominent {
    padding: 15px 30px;
    background-color: #e50914;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

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

/* Über Uns */
.about {
    padding: 100px 0;
    background-color: #1e1e1e;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tourdaten */
.tour {
    padding: 100px 0;
    background-color: #1e1e1e;
    text-align: center;
}

.tour h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.tour ul {
    list-style: none;
}

.tour ul li {
    font-size: 1.1em;
    margin: 10px 0;
}

/* Footer / Kontakt */
footer {
    padding: 60px 0;
    background-color: #121212;
    text-align: center;
}

footer h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

footer p {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer-text a {
    color: #fff;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: #e50914;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        width: 250px;
        margin-bottom: 30px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}

p {
    color: white;
}