/*
Theme Name: Astra Child für Steuerberater
Template: astra
Version: 1.0.0
Description: Custom Child Theme für Steuerberater Christian Müller
Author: Claude Code
*/

/* Custom Colors */
:root {
    --primary-color: #1a365d; /* Navy Blue */
    --accent-color: #0ea5e9; /* Sky Blue */
    --text-color: #1f2937;
    --background-light: #f8fafc;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

/* CTA Buttons */
.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0284c7;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Menu Styling */
.site-footer .footer-widget-area {
    padding: 30px 0;
}

.footer-widget-area .menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-area .menu li {
    display: inline-block;
}

.footer-widget-area .menu a {
    color: #666;
    text-decoration: none;
}

.footer-widget-area .menu a:hover {
    color: var(--accent-color);
}

/* Bessere Lesbarkeit im Hero-Bereich */
.wp-block-cover__inner-container h1,
.wp-block-cover__inner-container p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-section .wp-block-cover__background {
    opacity: 0.6 !important;
}
