* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f2f2f5;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 4px #0000001a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    font-size: 2.25em; 
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin: 0 30px; 
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.5em; 
}

nav ul li a:hover {
    color: #0071e3;
}

ul.help {
    text-decoration: none;
    color:black;
}
/* kurze beschreibung  */

.hero-section {
    height: 80vh;
    background-image: url('../img/titel.jpg');
    background-size: cover; 
    background-position: center; 
    display: flex;
    justify-content: center;    
    align-items: center;
    color: #000000ea;
    text-align: center;
    position: relative; 
}

.hero-text {
    position: relative; 
    z-index: 1; 
}

.hero-text h1 {
    font-size: 4.5em; 
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 1.8em; 
    margin-bottom: 60px;
    color:#000000ea 
}

#about {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

#lauchernalp {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.cta-button {
    background-color: #0071e3;
    color: white;
    padding: 15px 30px; 
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5em; 
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005bb5;
}

.content-section {
    padding: 90px 60px; 
    text-align: center;
    background-color: #fff;
}

.content-section h2 {
    font-size: 3.75em; 
    margin-bottom: 30px; 
}

.content-section p {
    font-size: 1.65em; 
    max-width: 800px;
    margin: 0 auto;
}

.gallery-section {
    padding: 90px 60px; 
    background-color: #f8f8f8;
    text-align: center;
}

.gallery-section h2 {
    font-size: 3.75em; 
    margin-bottom: 30px; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover; 
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0; 
    font-size: 1.2em;
    position: relative
    
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    .gallery-grid img {
        width: 100%; 
        height: auto;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
    }

    .hero-text h1 {
        font-size: 3.75em; 
    }

    .hero-text p {
        font-size: 1.5em; 
    }

    .content-section h2 {
        font-size: 3em; 
    }

    .content-section p {
        font-size: 1.2em; 
    }
}
