/* Hero-Sektion Styles */
:root {
    --primary-color: #00a2ff;
    --secondary-color: #0062ff;
    --accent-color: #00ffff;
    --dark-bg: #000814;
    --darker-bg: #000000;
    --light-text: #e0f2ff;
    --silver: #c0c0c0;
    --glow-effect: 0 0 10px rgba(0, 162, 255, 0.7), 0 0 20px rgba(0, 162, 255, 0.4);
    --transition-speed: 0.3s;
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow: auto;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 162, 255, 0.5);
}

.section-content {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--silver);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    box-shadow: var(--glow-effect);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.8), 0 0 30px rgba(0, 162, 255, 0.5);
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    background: transparent;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
}

.secondary-button:hover {
    background: rgba(0, 162, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.tech-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-line {
    position: absolute;
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.circle-line:nth-child(1) {
    width: 200px;
    height: 200px;
}

.circle-line:nth-child(2) {
    width: 240px;
    height: 240px;
}

.circle-line:nth-child(3) {
    width: 280px;
    height: 280px;
}

.circle-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: blink 3s infinite ease-in-out;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s infinite linear;
}

/* Animation-Klassen */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes blink {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1000px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .tech-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-line:nth-child(1) {
        width: 150px;
        height: 150px;
    }
    
    .circle-line:nth-child(2) {
        width: 190px;
        height: 190px;
    }
    
    .circle-line:nth-child(3) {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tech-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-line:nth-child(1) {
        width: 120px;
        height: 120px;
    }
    
    .circle-line:nth-child(2) {
        width: 150px;
        height: 150px;
    }
    
    .circle-line:nth-child(3) {
        width: 180px;
        height: 180px;
    }
}

/* iPhone-spezifische Optimierungen */
@supports (-webkit-touch-callout: none) {
    .section-content {
        -webkit-overflow-scrolling: touch;
    }
}
