/*
Theme Name: Verselo AI
Theme URI: https://verselo.ai
Author: Verselo AI
Author URI: https://verselo.ai
Description: Custom child theme for Verselo AI — KI-Beratung & Coaching für den deutschen Mittelstand. Based on Twenty Twenty-Five with a dark, premium consulting aesthetic.
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verselo-ai
Tags: one-column, custom-colors, full-site-editing, block-patterns, dark-mode
*/
/* Verselo AI — Custom Styles */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hero gradient overlay */
.verselo-hero {
    background: linear-gradient(135deg, #0A0F1C 0%, #111827 50%, #0A0F1C 100%);
    position: relative;
}

.verselo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Card styles */
.verselo-card {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verselo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Accent card (featured/highlighted) */
.verselo-card-accent {
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.05);
}

/* CTA Button enhancements */
.wp-block-button .wp-block-button__link {
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.25);
}

/* Accent text color utility */
.has-accent-1-color {
    color: #00D4AA !important;
}

/* Subtle divider */
.verselo-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
    margin: 3rem 0;
}

/* Trust badge / stats row */
.verselo-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.verselo-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D4AA;
    line-height: 1;
}

.verselo-stat-label {
    font-size: 0.875rem;
    color: #E8E8E8;
    margin-top: 0.5rem;
}

/* FAQ accordion styling */
.wp-block-details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.wp-block-details summary {
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 0;
    color: #FFFFFF;
}

.wp-block-details summary:hover {
    color: #00D4AA;
}

/* Section spacing */
.verselo-section {
    padding: 5rem 0;
}

/* Pricing tier highlight */
.verselo-pricing-highlight {
    position: relative;
}

.verselo-pricing-highlight::before {
    content: 'Beliebt';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00D4AA;
    color: #0A0F1C;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .verselo-stats {
        flex-direction: column;
        align-items: center;
    }
}