@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(font.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('gurkentruppe.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e30d20;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #614936;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 13, 32, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: white;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.logo {
    max-width: 180px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero .tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Recruitment Banner */
.recruitment-banner {
    background: linear-gradient(135deg, #e30d20, #8b0000);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.recruitment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.recruitment-banner h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.8);
}

.section-darker {
    background: rgba(0, 0, 0, 0.9);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e30d20;
    margin: 15px auto 0;
}

/* About Section */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 2.5rem;
    color: #e30d20;
    margin-bottom: 1rem;
}

.about-card h4 {
    margin-bottom: 1rem;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Futura', sans-serif;
    font-size: 3rem;
    color: #e30d20;
    font-weight: 700;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Values Section */
.values-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.values-intro a {
    color: #e30d20;
    text-decoration: underline;
}

.values-intro a:hover {
    color: white;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2rem;
    color: #e30d20;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Fee Section */
.fee-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.fee-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-main i {
    font-size: 3rem;
    color: #e30d20;
}

.fee-amount {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.fee-calc {
    font-family: 'Futura', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e30d20;
}

.fee-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.fee-explanation {
    text-align: left;
}

.fee-explanation p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.fee-explanation p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .fee-main {
        flex-direction: column;
        text-align: center;
    }

    .fee-amount {
        text-align: center;
    }

    .fee-calc {
        font-size: 1.4rem;
    }

    .fee-box {
        padding: 25px 20px;
    }

    .fee-explanation {
        text-align: center;
    }
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, rgba(227, 13, 32, 0.2), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.join-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #e30d20;
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.join-box h2 {
    margin-bottom: 1.5rem;
}

.join-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.join-box .info-note {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #e30d20;
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    text-align: left;
}

.join-box .info-note i {
    margin-right: 8px;
    color: #e30d20;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-slogan {
    font-family: 'Futura', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #e30d20;
}

.footer-info {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Link Recommendations Section */
.links-disclaimer {
    opacity: 0.9;
    font-size: 1.1rem;
}

.links-disclaimer i {
    color: #e30d20;
    margin-right: 5px;
}

.link-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: white;
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #e30d20;
    color: white;
}

.link-card i {
    font-size: 2.5rem;
    color: #e30d20;
    margin-bottom: 1rem;
    display: block;
}

.link-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.link-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 15px;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 120px;
        margin-bottom: 1.25rem;
    }

    .hero .mt-4 {
        margin-top: 1.25rem !important;
    }

    .hero .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Recruitment Banner */
    .recruitment-banner {
        padding: 12px 15px;
    }

    .recruitment-banner h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        margin-top: 10px;
    }

    /* About & Value Cards */
    .about-card,
    .value-card {
        padding: 20px;
        margin-bottom: 0;
        text-align: center;
    }

    .about-card i,
    .value-card i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .about-card h4,
    .value-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .about-card p,
    .value-card p {
        font-size: 0.9rem;
    }

    .row.g-4 {
        --bs-gutter-y: 1rem;
    }

    /* Stats */
    .stats {
        gap: 25px;
        margin: 2rem 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Values Section */
    .values-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    /* Join Section */
    .join-box {
        padding: 25px 20px;
    }

    .join-box h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .join-box p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .join-box .info-note {
        padding: 12px 15px;
        font-size: 0.9rem;
        text-align: center;
        border-left: none;
        border-top: 3px solid #e30d20;
        border-radius: 10px 10px 0 0;
    }

    .contact-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 30px 0 15px;
    }

    .footer-slogan {
        font-size: 1.5rem;
    }

    .social-links {
        margin: 15px 0;
    }

    .social-links a {
        font-size: 1.3rem;
        margin: 0 10px;
    }

    .footer-info {
        font-size: 0.8rem;
    }

    /* Link Cards */
    .links-disclaimer {
        font-size: 1rem;
        padding: 0 10px;
    }

    .link-card {
        padding: 20px;
    }

    .link-card i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .link-card h4 {
        font-size: 1rem;
    }

    .link-card p {
        font-size: 0.9rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .logo {
        max-width: 100px;
    }

    .recruitment-banner h3 {
        font-size: 0.8rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .join-box h2 {
        font-size: 1.2rem;
    }

    .footer-slogan {
        font-size: 1.3rem;
    }
}
