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

/* TYPO */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
}

html {
    scroll-behavior: smooth;
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: #f5f5f5;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.08);

}

.logo {
    font-weight: 600;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #222;
    font-size: 0.9rem;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(30,60,90,0.4), rgba(30,60,90,0.4)), url("../img/Hintergrundbild.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 20px;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #000;
    color: #fff;
}

/* CONTENT */
.content {
    padding: 120px 20px 80px;
    display: flex;
    justify-content: center;
}

.text-block {
    max-width: 700px;
}

.text-block p {
    margin-bottom: 20px;
}

.highlight {
    font-weight: 600;
    font-size: 1.2rem;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 80px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);


}

.contact h2 {
    margin-bottom: 10px;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    color: #666;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #666;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    border: none;
    text-decoration: underline;
    padding: 0;
}

.footer-links a:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

#about {
    scroll-margin-top: 80px;
}

#datenschutz h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#datenschutz  h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#impressum h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#impressum  h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#datenschutz a {
    margin: 0;
    color: #666;
    transition: all 0.3s ease;
    font-size: 1.0rem;
    border: none;
    text-decoration: none;
    padding: 0;
}

#datenschutz a:hover {
    background: #222;
    color: #fff;
    border-color: #666;
}
