/* ===== MODERN HOMEPAGE - MINTGRÜN & ORANGE ===== */

/* Modern Content Section */
.content-section {
    background: linear-gradient(to bottom, white, #f8f9fa);
    padding: 5rem 0;
}

.section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
}

.feature-card-mint {
    border-top-color: var(--mindgruen);
}

.feature-card-orange {
    border-top-color: var(--orange);
}

.feature-card-cyan {
    border-top-color: #4facfe;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.feature-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.badge-mint {
    background: linear-gradient(135deg, var(--mindgruen), #4a9382);
}

.badge-orange {
    background: linear-gradient(135deg, var(--orange), #e05500);
}

.badge-cyan {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-overlay i {
    font-size: 3.5rem;
    color: white;
}

.feature-content {
    padding: 2rem;
}

.feature-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: white;
}

.cat-mint {
    background: linear-gradient(135deg, var(--mindgruen), #4a9382);
}

.cat-orange {
    background: linear-gradient(135deg, var(--orange), #e05500);
}

.cat-cyan {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.feature-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-excerpt {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.link-mint {
    color: var(--mindgruen);
}

.link-mint:hover {
    color: #4a9382;
    gap: 0.75rem;
}

.link-orange {
    color: var(--orange);
}

.link-orange:hover {
    color: #e05500;
    gap: 0.75rem;
}

.link-cyan {
    color: #4facfe;
}

.link-cyan:hover {
    color: #00f2fe;
    gap: 0.75rem;
}

/* Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--mindgruen) 0%, var(--orange) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.cta-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.4rem !important;
    }

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

    .section-headline {
        font-size: 2.2rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-title {
        font-size: 2.5rem !important;
    }

    .cta-text {
        font-size: 1.1rem !important;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
