/* Allgemeines Layout */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
    color: #222;
    animation: bgShift 10s infinite alternate;
}

/* Hintergrund sanft animieren */
@keyframes bgShift {
    0% { background: linear-gradient(135deg, #ffecd2, #fcb69f, #ff9a9e); }
    50% { background: linear-gradient(135deg, #fcb69f, #ff9a9e, #fad0c4); }
    100% { background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb); }
}

/* Header */
header {
    background: linear-gradient(90deg, #ff6f61, #ffcc70, #ffd700);
    color: white;
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: headerPulse 3s infinite alternate;
}

/* Header Animation */
@keyframes headerPulse {
    from { box-shadow: 0 4px 15px rgba(255,0,0,0.4); }
    to { box-shadow: 0 4px 25px rgba(255,255,0,0.8); }
}

header img {
    height: 70px;
    vertical-align: middle;
    margin-right: 12px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
}

h1 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Navigation */
nav {
    background: linear-gradient(90deg, #ffcc70, #ff6f61, #ffcc70);
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav a {
    color: #222;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #ff6f61;
    transform: scale(1.2);
}

/* Content Sections */
section {
    max-width: 1000px;
    margin: auto;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

section:hover {
    transform: scale(1.02);
}

h2 {
    color: #ff6f61;
    border-bottom: 3px solid #ffcc70;
    padding-bottom: 6px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

ul li {
    margin: 8px 0;
}

/* Apply Button */
.apply-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.3em;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff0000, #ff9900, #ff00ff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 20px #ff0000;
    animation: blink 0.8s infinite, glow 1.5s infinite alternate;
}

/* Blink & Glow Animation */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.4; }
}

@keyframes glow {
    from { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
    to { box-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00; }
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #ffcc70, #ff6f61, #ffd700);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    animation: footerGlow 3s infinite alternate;
}

@keyframes footerGlow {
    from { box-shadow: 0 -4px 15px rgba(255,0,0,0.4); }
    to { box-shadow: 0 -4px 25px rgba(255,255,0,0.8); }
}