/**
 * scroll-animations.css — babylugg.de
 * ============================================
 * Additive only: Scroll-Animationen + subtile Hover-Effekte.
 * Keine bestehenden Styles werden überschrieben.
 * Keine CI-Farben oder Branding-Änderungen.
 * ============================================
 */

/* --- Header: Scroll Shadow (Klasse via JS gesetzt) --- */
.main-header {
    transition: box-shadow 0.3s ease;
}
.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

/* --- How-it-works: Step Icon Hover --- */
.step-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works-grid div:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(42, 159, 135, 0.30);
}

/* --- About Us: Blockquote dezente linke Border --- */
.about-us-quote {
    transition: border-color 0.3s ease;
}

/* --- Footer Social Icons: Hover Lift --- */
.social-media-links a {
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: inline-block;
}
.social-media-links a:hover {
    transform: scale(1.15) translateY(-2px);
    opacity: 0.85;
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .step-icon,
    .social-media-links a {
        transition: none !important;
    }
}
