@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    background-color: #0b0f19;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
}

/* Aurora Background für die Hero Section */
.aurora-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(192, 132, 252, 0.2) 0%, rgba(192, 132, 252, 0) 70%),
                radial-gradient(ellipse at center, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0) 70%);
    animation: aurora 20s infinite linear;
    opacity: 0.6;
}

@keyframes aurora {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Header-Styling */
#header.scrolled {
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Allgemeine Sektions-Titel */
.section-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem; /* 48px */
    }
}

.section-subtitle {
    color: #94a3b8;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button-Styling */
.btn-primary {
    background-color: #ec4899;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.4);
}

/* Feature Card Styling */
.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
	text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ec4899;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.feature-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
}

.feature-card p {
    margin-top: 0.5rem;
    color: #94a3b8;
}

/* Pricing Card Styling */
.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2.5rem;
}

/* FAQ Accordion Styling */
.faq-item {
    background-color: #1e293b;
    border-radius: 0.5rem;
    border: 1px solid #334155;
}
.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 1.5rem 1rem;
    color: #94a3b8;
}

/* Animationen */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fade-in-up 0.8s both;
}

/* =========================================
   Interaktive Feature-Demo
   ========================================= */

/* Handy-Mockup */
.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    background: #111;
    border: 12px solid #000;
    border-radius: 40px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}
.phone-screen {
    background: #1e293b;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 9 / 19.5; /* Simuliert ein modernes Handy-Display */
}

/* =========================================
   Interaktive Feature-Trigger (Finale Version)
   ========================================= */

.feature-trigger {
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    background-color: rgba(30, 41, 59, 0.5); /* Standard-Hintergrund */
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}
.feature-trigger:hover {
    transform: translateY(-5px); /* Leichter Schwebe-Effekt für alle */
}
.feature-trigger p {
    color: #94a3b8;
    transition: color 0.3s ease;
}
.feature-trigger.active {
    background-color: rgba(30, 41, 59, 1); /* Etwas soliderer Hintergrund */
    border-color: #ec4899;
    transform: scale(1.05) translateY(-5px); /* Der "Zoom"-Effekt */
}
.feature-trigger.active p {
    color: #cbd5e1;
}
.feature-trigger.active h4 {
    color: #ec4899;
}
.feature-trigger h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

/* "Wie es geht" Sektion */
.step-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    background-color: #ec4899;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}
.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
}
.step-card p {
    margin-top: 0.5rem;
    color: #94a3b8;
}

/* Blog Styling */
.blog-post-card {
    display: block;
    background-color: #1e293b;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.blog-post-card:hover {
    transform: translateY(-5px);
}
.blog-post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}
.blog-post-excerpt {
    color: #94a3b8;
    margin-top: 0.5rem;
}
.blog-post-readmore {
    display: inline-block;
    margin-top: 1rem;
    color: #ec4899;
    font-weight: 600;
}

/* =========================================
   "Featured Post" Styling
   ========================================= */

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Bild über Text */
    md:grid-template-columns: 1fr 1fr; /* Desktop: Bild neben Text */
    gap: 2rem;
    align-items: center;
    text-decoration: none;
}
.featured-post-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.4s ease;
}
.featured-post-card:hover .featured-post-image {
    transform: scale(1.05);
}
.featured-post-title {
    font-size: 2rem; /* 32px */
    font-weight: 700;
    color: white;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.featured-post-card:hover .featured-post-title {
    color: #ec4899;
}
.featured-post-excerpt {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 1.1rem;
}
.featured-post-readmore {
    display: inline-block;
    margin-top: 1.5rem;
    color: #ec4899;
    font-weight: 600;
}