/* Grundlegende Stildefinitionen */
body {
    font-family: 'Arial', sans-serif; /* Platzhalter, später durch Reckless Neue etc. ersetzen */
    margin: 0;
    padding: 0;
    color: #fff; /* Standardtextfarbe weiß */
    background-color: #000408; /* Tiefer Schwarz-Void Hintergrund */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.main-header {
    background-color: rgba(0, 0, 0, 0.8); /* Leichter Transparenz-Effekt */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    font-size: 1.8em;
    color: #00F0FF; /* Electric Cyan für das Logo */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #FF3366; /* Hot Magenta beim Hover */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000408;
}

.hero-background-shader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hier würde später der CSS-Filter oder Canvas-Shader eingebunden */
    /* Beispiel für einen initialen, subtilen Blauton */
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, rgba(0, 4, 8, 0) 70%);
    animation: subtle-ripple 15s infinite ease-in-out; /* Platzhalter-Animation */
}

@keyframes subtle-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 6em; /* Beispielgröße, anpassen */
    margin: 0;
    text-transform: uppercase;
    font-weight: 900; /* Extrabold */
    color: transparent;
    background: linear-gradient(45deg, gold, #00F0FF, #FF3366); /* Flüssig-metallisch, Gold/Cyan/Magenta */
    -webkit-background-clip: text;
    background-clip: text;
    /* Später: Für Drips/Glow/Distortion sind JavaScript/Shader nötig */
}

.hero-subtitle {
    font-size: 1.5em;
    margin-top: 20px;
    color: #fff; /* Initial weiß */
    /* Später: Glitch-Reveal beim Scrollen */
}

.btn {
    display: inline-block;
    background-color: #00F0FF; /* Electric Cyan Button */
    color: #000408;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #FF3366; /* Hot Magenta beim Hover */
    color: #fff;
}

/* Hauptinhaltsbereich */
.main-content {
    padding: 80px 0;
}

.pillar-section, .content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-section:last-of-type, .content-section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2.5em;
    color: #00F0FF; /* Überschriften in Electric Cyan */
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    color: #FF3366; /* Sub-Überschriften in Hot Magenta */
    margin-top: 30px;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

/* Call to Action Sektion (Spenden) */
.call-to-action-section {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-contact {
    margin-top: 20px;
}
