/* Allgemein */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #66ccff; /* kühles Blau */
    animation: heroGlow 2.5s infinite alternate;
}

@keyframes heroGlow {
    0% { text-shadow: 0 0 5px #66ccff; }
    50% { text-shadow: 0 0 20px #66ccff, 0 0 40px #9966ff; }
    100% { text-shadow: 0 0 5px #66ccff; }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #a0a0ff; /* sanftes Blau */
    animation: pulseText 3s infinite alternate;
}

@keyframes pulseText {
    0% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.85; transform: scale(1); }
}

.btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #66ccff, #9966ff);
    color: #111;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #9966ff;
}

.btn:hover {
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 0 25px #66ccff, 0 0 50px #9966ff;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    color: #9966ff;
    margin-bottom: 20px;
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px #9966ff; }
    50% { text-shadow: 0 0 15px #9966ff, 0 0 25px #66ccff; }
    100% { text-shadow: 0 0 5px #9966ff; }
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
}

/* Boss Section */
.boss-section {
    padding: 60px 20px;
    text-align: center;
}

.boss-section h2 {
    font-size: 2rem;
    color: #66ccff;
    margin-bottom: 40px;
    animation: textGlowBoss 2.5s infinite alternate;
}

@keyframes textGlowBoss {
    0% { text-shadow: 0 0 5px #66ccff; }
    50% { text-shadow: 0 0 20px #66ccff, 0 0 30px #9966ff; }
    100% { text-shadow: 0 0 5px #66ccff; }
}

.boss-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.boss-card {
    background-color: rgba(30, 30, 50, 0.85); /* mystisches Blau-Lila transparent */
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    transition: transform 0.5s, box-shadow 0.5s;
    position: relative;
    overflow: hidden;
}

.boss-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px #66ccff, 0 0 60px #9966ff;
}

.boss-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.5s, filter 0.5s;
}

.boss-card:hover img {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1.15);
}

.boss-card h3 {
    margin-bottom: 10px;
    color: #9966ff;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-section .social-links a {
    color: #66ccff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, color 0.3s;
}

.contact-section .social-links a:hover {
    color: #9966ff;
    transform: scale(1.2) rotate(-3deg);
}

/* Footer */
footer {
    background-color: rgba(20,20,40,0.9);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    border-radius: 15px 15px 0 0;
    margin-top: 50px;
    width: 100%;
}

footer a {
    color: #66ccff;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

footer a:hover {
    color: #9966ff;
    transform: scale(1.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
