/* === GLOBAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* === HEADER & HERO === */
.hero {
    background: radial-gradient(circle at top, #121212, #1c1c1c);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    animation: fadeIn 1.2s ease-in-out;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #00e69f;
    max-width: 950px;
    margin-inline: auto;
    animation: fadeInUp 1s ease-out;
}

.cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #00cc88, #00e69f);
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 204, 136, 0.25);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #00ffb3, #00ffa6);
}

/* === NAVBAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #1a1a1a;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #00e69f;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-links li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 16px;
    transition: background 0.3s ease;
}

.nav-links li a:hover {
    background-color: #00cc88;
    color: #000;
}

/* === SECTIONS === */
/* === INFO SECTION VERBESSERT === */
.info-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    background-color: #1a1a1a;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.03);
    animation: fadeInUp 1.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-section h2 {
    color: #00e69f;
    font-size: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.info-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #00cc88;
    margin-top: 6px;
    border-radius: 2px;
}

.info-section p {
    color: #d0d0d0;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* === CTA BUTTON INNERHALB DER SECTION === */
.info-section .cta-button {
    align-self: flex-start;
    margin-top: 1rem;
    background: linear-gradient(135deg, #00cc88, #00e69f);
    color: #000;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 204, 136, 0.25);
}

.info-section .cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #00ffb3, #00ffa6);
}

/* === FACT CARDS === */
.fact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.fact-card {
    flex: 1;
    min-width: 280px;
    background-color: #2a2a2a;
    padding: 1.7rem;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 204, 136, 0.3);
}

/* === FOOTER (OPTIMIERT) === */
.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
    font-size: 0.85rem;
}

.site-footer h3 {
    color: #00cc88;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.site-footer li {
    margin: 0.3rem 0;
    font-size: 0.85rem;
}

.site-footer a {
    color: #00cc88;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.site-footer p {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: #888;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .fact-cards {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* === SOCIAL MEDIA ICONS === */
.social-card img {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #f5f5f5;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 20px;
    background-color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 204, 136, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-card:hover {
    background-color: #222;
    transform: translateY(-4px);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}