/* Grundlegende Stile & Hintergrund-Verlauf */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    /* Verlauf von Hellblau-Grün zu Anthrazit */
    background: linear-gradient(135deg, #72afd3 0%, #37434d 100%);
    background-attachment: fixed; /* Sorgt dafür, dass der Verlauf beim Scrollen stehen bleibt */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.logo {
    font-size: 1.1em;
    letter-spacing: 2px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.menu-icon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    margin: 6px 0;
    border-radius: 2px;
}

/* Hauptinhalt */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.content {
    max-width: 650px;
    /* Ein leichter Glassmorphism-Effekt für bessere Lesbarkeit */
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px border rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Dynamische Schriftgröße */
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 300;
}

h1 strong {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    main {
        padding: 20px;
        text-align: center;
    }
    
    header {
        padding: 20px;
    }

    .content {
        padding: 30px 20px;
    }
}