@charset "UTF-8";

/* --- Grundlegende Einstellungen & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ce347a; 
    --text-white: #ffffff;
    --text-black: #000000;
    --font-stack: 'Arial Black', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth; /* Weiches Scrollen beim Klicken auf Anker */
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: var(--text-white);
    overflow-x: hidden; 
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--primary-color);
    color: var(--text-white);
    min-height: 95vh; /* Etwas höher damit man scrollen muss */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 3rem 0 3rem;
    overflow: hidden; /* Wichtig für die Animation */
}

/* --- Top Bar --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.logo img {
    height: 200px; 
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); 
}

.main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-stack);
}

.nav-row {
    display: flex;
    gap: 0.5rem;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* --- Hero Content --- */
.hero-content {
    margin-bottom: 8rem; /* Mehr Platz nach unten wegen Animation */
    z-index: 10;
}

.sub-headline {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.main-headline {
    font-family: var(--font-stack);
    font-size: 8rem;
    line-height: 0.9;
    text-transform: uppercase;
    white-space: nowrap; 
    width: 100%; 
    overflow: hidden; 
}

/* --- Animierte Wellen (Loop) --- */
.wave-container {
    position: absolute;
    bottom: -1px; /* Verhindert weiße Blitzer */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-wrapper {
    display: flex;
    width: 200%; /* Doppelte Breite für zwei SVGs */
    animation: wave-slide 10s linear infinite; /* Die Animation */
}

.wave-wrapper svg {
    width: 50%; /* Jedes SVG nimmt die Hälfte der 200% ein (= 1 Bildschirmbreite) */
    height: 60px;
    display: block;
}

/* Die Keyframes für die Bewegung */
@keyframes wave-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Bewegt sich um eine Bildschirmbreite nach links */
}


/* --- Member Section (Neu) --- */
.member-section {
    padding: 6rem 3rem;
    background-color: var(--text-white);
    color: var(--primary-color);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-stack);
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 1;
}

.title-underline {
    display: block;
    width: 200px;
    height: auto;
    margin-top: 5px;
}

/* Die Member Boxen */
.member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.member-card {
    background-color: #f0f0f0;
    padding: 4rem 2rem;
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
    border: 2px solid transparent;
}

.member-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: var(--text-white);
}

.member-name {
    font-family: var(--font-stack);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-label {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border: 1px solid currentColor;
    padding: 5px 10px;
    border-radius: 4px;
}


/* --- Footer --- */
footer {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #333;
    border-top: 1px solid #eee; /* Trennlinie zum Content */
}

.mouse-icon {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2px 6px;
    margin-right: 8px;
    display: inline-block;
}

/* --- Responsive --- */
@media (max-width: 1000px) {
    .main-headline { font-size: 5rem; }
    .top-bar { flex-direction: column; }
    .main-nav { margin-top: 2rem; align-items: flex-start; }
    .member-grid { grid-template-columns: 1fr; } /* Untereinander auf Handys */
    .section-title { font-size: 3rem; }
}

@media (max-width: 600px) {
    .hero-section, .member-section, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; height: auto; padding-bottom: 2rem; }
}