/*
* Diese Datei wurde mit hilfe von GEMINI PRO erstellt, 
* da meinen eigegen CSS Skills nicht gereicht haben mein Konzept
* schon in HTML und CSS umzusetzen. 
* Weil mir aber einer wirklich darstellung der Daten wichtig war 
* habe ich mich deshalt trotzdem gegen Figma entschieden habe.
*/

@import url(style.css);

.hero-section {
    position: relative;
    min-height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    z-index: 2; /* Über den Blobs liegen */
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.badge {
    display: inline-block;
    background: var(--color-lime);
    color: var(--color-forest);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--color-forest-light);
    position: relative;
    display: inline-block;
}

/* Kleiner Kreis-Akzent hinter "Riesen" */
.highlight-text::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 40%;
    bottom: 10px;
    left: -10%;
    background-color: var(--color-accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 10px;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Schwebende Blobs im Hintergrund */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 1;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #A7D7C5; /* Helles Mint */
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #F4E285; /* Sanftes Gelb */
    bottom: 20%;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 50px) rotate(10deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 120px; /* Über der Welle */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-forest);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-forest);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}