/* Allgemeines Layout */
html, body {
 
}

body {
    margin: 0;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

#site-wrapper {
  height: 100%;
  overflow: auto;
}

/* Hintergrund-Laser */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#scrollBtn { opacity: 1; transition: all 0.5s; }
#scrollBtn.hide { opacity: 0; }

.laser {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: linear-gradient(180deg, #00ffe7, #00aaff);
    opacity: 0.6;
    animation: moveLaser 10s linear infinite, glowLaser 4s ease-in-out infinite alternate;
    filter: blur(2px);
}

/* Spezielle Farben für Laser */
.laser:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}
.laser:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
    background: linear-gradient(180deg, #ff00c8, #9900ff);
}
.laser:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}
.laser:nth-child(4) {
    left: 25%;
    animation-delay: 1s;
}
.laser:nth-child(5) {
    left: 65%;
    animation-delay: 3s;
}
.laser:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
    background: linear-gradient(180deg, #ff00c8, #9900ff);
}

/* Kopfbereich */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 2;
}

h1 {
    font-size: 3rem;
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7;
    margin-bottom: 20px;
}

#name {
    font-size: 3rem;
    color: #ff00c8;
    text-shadow: 0 0 15px #ff00c8, 0 0 30px #ff00c8;
    margin-bottom: 20px;
}

button {
    background: #ff00c8;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px #ff00c8, 0 0 30px #ff00c8;
    transition: transform 0.3s;
    z-index: 3;
}
button:hover {
    transform: scale(1.1);
}

/* Hauptbereich */
main {
    z-index: 2;
    position: relative;
}

/* Abschnitte */
section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50vh;
    padding: 50px;
    box-sizing: border-box;
}

/* Inhalte der Sektionen */
.section-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Perfekte vertikale Zentrierung */
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Spalten-Layout */
.column, .column-reverse {
    flex-direction: row;
    text-align: left;
}
.column-reverse {
    flex-direction: row-reverse;
}

/* Bild- und Textblöcke */
.section-content img, .section-content div {
    width: 50%;
}

.section-content img {
    object-fit: cover;
    max-width: 100%;
    height: 70vh;
    width: auto;
    border: 2px solid #00ffe7;
    border-radius: 20px;
    box-shadow: 0 0 20px #00ffe7;
    margin: 35px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .column, .column-reverse {
        flex-direction: column;
    }
    .section-content img, .section-content div {
        width: 100%;
        padding: 10px;
    }
}

/* Animationen für die Laser */
@keyframes moveLaser {
    0% {
        transform: translateY(-100%) rotate(0deg);
    }
    100% {
        transform: translateY(100%) rotate(360deg);
    }
}

@keyframes glowLaser {
    0% {
        opacity: 0.3;
        filter: blur(2px);
    }
    100% {
        opacity: 0.8;
        filter: blur(6px);
    }
}

/* Aktive Section visuell hervorheben */
.active-section .section-content {
    box-shadow: 0 0 40px rgba(0, 255, 231, 0.3);
    transition: box-shadow 0.5s ease-in-out;
}
	