body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('P25-Overland.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ff4500; /* Orangerot, passt gut zu Abenteuer */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e03e00;
}

/* --- Main Content --- */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* --- Über Uns Sektion --- */
.about-us {
    background-color: #f9f9f9; /* Leichter Kontrast zum weissen Hintergrund */
    padding: 40px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-container img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Stellt sicher, dass das Bild gut aussieht */
    border-radius: 50%; /* Macht das Bild rund */
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Für kleinere Bildschirme (Handys) */
@media (max-width: 600px) {
    .about-container {
        flex-direction: column; /* Bild und Text untereinander anordnen */
        text-align: center;
    }
}

/* --- Video Section --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Seitenverhältnis */
    height: 0;
    overflow: hidden;
}

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

/* --- Download Sektion --- */
.downloads {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.downloads p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.download-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.download-list li a {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-list li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.download-list .file-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.download-list .file-name {
    flex-grow: 1; /* Sorgt dafür, dass der Name den verfügbaren Platz einnimmt */
    font-weight: bold;
}

.download-list .file-type {
    background-color: #e9e9e9;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
}
/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

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