/* Freizeit Fussball Menzing Brand - Simplified */

:root {
    --ffm-dark: #0D1117;
    --ffm-dark-alt: #161B22;
    --ffm-green: #1DB954;
    --ffm-blue: #58A6FF;
    --ffm-white: #F0F6FC;
    --ffm-gray: #8B949E;
    --ffm-gray-dark: #484F58;
    --ffm-red: #E63946;
    --ffm-font: 'Outfit', sans-serif;
    --ffm-font-display: 'Bebas Neue', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.ffm-body {
    font-family: var(--ffm-font);
    background: var(--ffm-dark);
    color: var(--ffm-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Layout */
.ffm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.ffm-container--narrow {
    max-width: 700px;
}

.ffm-main {
    flex: 1;
}

/* Background Glows */
.ffm-bg-glow {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.ffm-bg-glow--top {
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(29, 185, 84, 0.08), transparent 60%);
}

.ffm-bg-glow--bottom {
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(88, 166, 255, 0.05), transparent 60%);
}

/* Nav */
.ffm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.95), transparent);
    backdrop-filter: blur(10px);
}

.ffm-nav__logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ffm-nav__logo {
    height: 75px;
}

.ffm-nav__divider {
    width: 1px;
    height: 30px;
    background: var(--ffm-gray-dark);
}

/* Logo Wrapper */
.ffm-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem .5rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.ffm-logo-wrap--highlight {
    background: rgba(240, 246, 252, 0.95);
    box-shadow: 0 4px 20px rgba(240, 246, 252, 0.2);
}

.ffm-logo-wrap--highlight:hover {
    background: var(--ffm-white);
    box-shadow: 0 4px 24px rgba(240, 246, 252, 0.3);
}

/* Buttons */
.ffm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ffm-btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.ffm-btn--primary {
    background: var(--ffm-green);
    color: var(--ffm-dark);
}

.ffm-btn--primary:hover {
    background: var(--ffm-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(29, 185, 84, 0.3);
}

.ffm-btn--outline {
    background: transparent;
    color: var(--ffm-white);
    border: 1px solid var(--ffm-gray-dark);
}

.ffm-btn--outline:hover {
    border-color: var(--ffm-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Typography */
.ffm-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ffm-green);
    margin-bottom: 1rem;
}

.ffm-eyebrow::before {
    content: '— ';
}

.ffm-gradient-text {
    background: linear-gradient(135deg, var(--ffm-green), var(--ffm-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ffm-text--muted {
    color: var(--ffm-gray);
}

.ffm-text--sm {
    font-size: 0.875rem;
}

.ffm-link {
    color: var(--ffm-green);
    text-decoration: none;
}

.ffm-link:hover {
    text-decoration: underline;
}

/* Hero */
.ffm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.ffm-hero__title {
    font-family: var(--ffm-font-display);
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.ffm-hero__subtitle {
    font-size: 1.25rem;
    color: var(--ffm-gray);
    max-width: 500px;
    margin-bottom: 3rem;
}

.ffm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Sections */
.ffm-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.ffm-section--alt {
    background: var(--ffm-dark-alt);
}

.ffm-section--center {
    text-align: center;
}

.ffm-section__title {
    font-family: var(--ffm-font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 4rem;
}

/* Grid */
.ffm-grid {
    display: grid;
    gap: 2rem;
}

.ffm-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ffm-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.ffm-card {
    background: var(--ffm-dark);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid transparent;
    transition: all 0.4s;
}

.ffm-card:hover {
    transform: translateY(-8px);
    border-color: var(--ffm-green);
    box-shadow: 0 20px 60px rgba(29, 185, 84, 0.15);
}

.ffm-card__icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ffm-card__title {
    font-family: var(--ffm-font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ffm-card__text {
    color: var(--ffm-gray);
    margin-bottom: 1.5rem;
}

.ffm-card__list {
    list-style: none;
}

.ffm-card__list li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    color: var(--ffm-gray);
    font-size: 0.9rem;
}

.ffm-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--ffm-green);
    border-radius: 50%;
}

/* Value Cards */
.ffm-value {
    text-align: center;
    padding: 2.5rem;
    background: var(--ffm-dark-alt);
    border-radius: 24px;
}

.ffm-value__num {
    font-family: var(--ffm-font-display);
    font-size: 4rem;
    background: linear-gradient(135deg, var(--ffm-green), var(--ffm-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ffm-value__title {
    font-family: var(--ffm-font-display);
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
}

.ffm-value__text {
    color: var(--ffm-gray);
    font-size: 0.9rem;
}

/* CTA Form */
.ffm-cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.ffm-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--ffm-gray-dark);
    background: var(--ffm-dark);
    color: var(--ffm-white);
    font-size: 1rem;
}

.ffm-input:focus {
    outline: none;
    border-color: var(--ffm-green);
}

.ffm-input::placeholder {
    color: var(--ffm-gray);
}

/* Footer */
.ffm-footer {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--ffm-gray-dark);
    position: relative;
    z-index: 1;
}

.ffm-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.ffm-footer__spacer {
    width: 120px;
}

.ffm-footer__logos {
    display: flex;
    gap: 1.5rem;
}

.ffm-footer__logo {
    height: 40px;
}

.ffm-footer__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ffm-footer__links a,
.ffm-footer__links a:visited {
    color: var(--ffm-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.ffm-footer__links a:hover {
    color: var(--ffm-green);
}

.ffm-footer__lang {
    width: 120px;
    text-align: right;
}

.ffm-footer__lang a,
.ffm-footer__lang a:visited {
    color: var(--ffm-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.ffm-footer__lang a:hover {
    color: var(--ffm-green);
}

.ffm-footer__tagline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ffm-gray-dark);
    color: var(--ffm-gray);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* Messages */
.ffm-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
}

.ffm-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: var(--ffm-dark-alt);
    border-left: 4px solid var(--ffm-green);
}

.ffm-alert--error {
    border-color: var(--ffm-red);
}

/* Responsive */
@media (max-width: 768px) {
    .ffm-nav {
        padding: 1rem;
    }

    .ffm-nav__logo {
        height: 30px;
    }

    .ffm-logo-wrap {
        padding: 0.35rem 0.75rem;
    }

    .ffm-hero {
        padding: 6rem 0 3rem;
    }

    .ffm-section {
        padding: 4rem 0;
    }

    .ffm-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .ffm-footer__spacer {
        display: none;
    }

    .ffm-footer__links {
        justify-content: center;
    }

    .ffm-footer__lang {
        width: auto;
        text-align: center;
    }

    .ffm-footer__tagline {
        flex-direction: column;
    }
}

/* =============================================================================
        Arrow scroll Indicator
       ============================================================================= */

.ffm-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #8B949E;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: ffm-bounce 2s infinite;
}

.ffm-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes ffm-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .ffm-scroll-indicator {
        display: none;
    }
}
