/* Applying the custom font and colors */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1a202c;
}

/* New Gradient Text Style */
.gradient-text {
    background-image: linear-gradient(to right, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-brand-gradient {
     background-image: linear-gradient(to right, #8B5CF6, #3B82F6);
}

/* Custom colors */
.bg-brand-background { background-color: #FFFFFF; }
.text-brand-dark { color: #2D3748; }
.text-brand-gray { color: #718096; }

/* Floating animation for badges */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Custom styling for specific elements */
.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 2rem;
    border-radius: 0.75rem;
}

#rotating-word {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: inline-block;
}

/* Style for progress bar animation */
.progress-bar-fill {
    width: 0%;
    transition: width 1.5s ease-out;
}

/* Button Hover-Effekt */
a.rounded-lg,
button.rounded-lg {
    display: inline-flex; /* Use flex to ensure proper alignment */
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out,
                background-color 0.2s ease-in-out,
                color 0.2s ease-in-out,
                box-shadow 0.2s ease-in-out,
                border-color 0.2s ease-in-out;
}

a.rounded-lg:hover,
button.rounded-lg:hover {
    transform: scale(1.05);
}

.lg\:text-6xl {
    line-height: 1.2 !important;
}

/* --- Blog Filter Styles --- */
.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    color: #4A5568;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.filter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 15px rgba(0,0,0,0.1);
}

.filter-btn.active {
    color: white !important;
    background-image: linear-gradient(to right, #8B5CF6, #3B82F6);
    border-color: transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Blog Post Animation */
.blog-post {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.blog-post.hidden {
    opacity: 0;
    transform: scale(0.95);
    /* This class is used by main.js to hide/show posts based on filters */
}

/* --- FAQ Accordion Styles --- */
.faq-question {
    transition: background-color 0.2s ease-in-out;
}
.faq-question:hover {
    background-color: #f7fafc; /* gray-100 */
}
.faq-item.active .faq-question {
    background-color: #f7fafc; /* gray-100 */
}

