/* Grund-Reset und Schriftart */
* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./fonts/inter-600.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b1f44;
    color: #eaf2ff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background: #0b1f44;
    padding: 25vh 15vw 0;
}

.hero__inner {
    max-width: 780px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 8vw;
    }
    
    .hero h1 {
        white-space: normal;
    }
}

/* Content Sections */
.content-section {
    padding: 96px 15vw 120px;
    background: #0f264f;
}

.content-section:nth-child(even) {
    background: #0b1f44;
}

.content-container {
    max-width: 780px;
}

.content-section h2 {
    margin-top: 0;
    margin-bottom: 32px;
    font-weight: 600;
    color: #ffffff;
    font-size: 2rem;
}

.content-section h3 {
    margin: 40px 0 12px;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.2rem;
}

.content-section h3:first-of-type {
    margin-top: 0;
}

.content-section p {
    margin: 0 0 16px 0;
    color: rgba(234, 242, 255, 0.9);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .content-section {
        padding: 72px 8vw 96px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
        margin: 32px 0 10px;
    }
}

/* Footer / Impressum Link - Material 3 Elevation Level 2 */
.main-footer {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: #0f264f;
    padding: 12px 28px;
    border-radius: 100px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 
                0px 1px 2px 0px rgba(0, 0, 0, 0.30);
}

.footer-link {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 10px;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-separator {
    color: #ffffff;
    margin: 0 12px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 10px 20px;
        bottom: 20px;
        white-space: nowrap;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 4px 6px;
    }
    
    .footer-separator {
        margin: 0 6px;
    }
}
