/* --- Grunddesign --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #fff;
    overflow-x: hidden;
}

/* --- Startanimation --- */
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c0c0c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: intro-fade 2.5s forwards;
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: white;
    opacity: 0;
    animation: logo-fade 2s ease forwards 0.5s;
}


@keyframes logo-fade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes intro-fade {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* --- Hero-Sektion mit Hintergrundbild --- */
.hero {
    height: 100vh;
    background: url("background.jpg") center/cover no-repeat;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 25px;
    background: #dc983f;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffaa00;
}

.logo-header {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 150px;
    z-index: 10;
}



/* --- Allgemeine Sektionen --- */
.section {
    background: #fff;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}
