/*
 Theme Name:   FD-Onlinedruck
 Theme URI:    https://fd-onlinedruck.de
 Description:  Modernes WordPress-Theme für FD-Onlinedruck.de - Qualitätsdrucksachen Made in Germany. Apple-Style Design, voll responsive, Customizer-fähig.
 Author:       Martin Günther / Farbenspiel Design
 Author URI:   https://fd-onlinedruck.de
 Version:      2.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  fd-onlinedruck
 Tags:         one-column, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==========================================================================
   CSS VARIABLEN - HIER FARBEN ANPASSEN
   ========================================================================== */

:root {
    /* Hauptfarben */
    --fd-primary: #8a1b6a;
    --fd-primary-dark: #6d1554;
    --fd-primary-light: #a52882;
    --fd-primary-rgb: 138, 27, 106;
    
    /* Sekundärfarben */
    --fd-secondary: #2d2d2d;
    --fd-text: #333333;
    --fd-text-light: #666666;
    --fd-text-muted: #999999;
    
    /* Hintergründe */
    --fd-bg-light: #f8f8f8;
    --fd-bg-white: #ffffff;
    --fd-bg-dark: #1a1a1a;
    
    /* Akzente */
    --fd-success: #28a745;
    --fd-warning: #ffc107;
    --fd-accent: #e8e0e5;
    
    /* Schatten */
    --fd-shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --fd-shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --fd-shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --fd-shadow-hover: 0 12px 32px rgba(138,27,106,0.2);
    
    /* Abstände */
    --fd-radius-sm: 4px;
    --fd-radius-md: 8px;
    --fd-radius-lg: 12px;
    --fd-radius-xl: 20px;
    
    /* Übergänge */
    --fd-transition: all 0.3s ease;
    --fd-transition-fast: all 0.2s ease;
    
    /* Layout */
    --fd-container: 1200px;
    --fd-header-height: 80px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--fd-text);
    line-height: 1.6;
    background: var(--fd-bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--fd-transition-fast);
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAFIE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--fd-secondary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.fd-container {
    width: 100%;
    max-width: var(--fd-container);
    margin: 0 auto;
    padding: 0 20px;
}

.fd-section {
    padding: 80px 0;
}

.fd-section--gray {
    background: var(--fd-bg-light);
}

.fd-section--dark {
    background: var(--fd-bg-dark);
    color: #fff;
}

.fd-section--dark h2,
.fd-section--dark h3 {
    color: #fff;
}

.fd-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.fd-section__header p {
    color: var(--fd-text-light);
    font-size: 1.125rem;
    margin-top: 15px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.fd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--fd-header-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--fd-transition);
}

.fd-header.is-scrolled {
    box-shadow: var(--fd-shadow-md);
}

.fd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.fd-header__logo img,
.fd-header__logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.fd-header__logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fd-primary);
}

.fd-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.fd-header__menu {
    display: flex;
    gap: 32px;
}

.fd-header__menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--fd-secondary);
    position: relative;
    padding: 8px 0;
}

.fd-header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fd-primary);
    transition: var(--fd-transition);
}

.fd-header__menu a:hover {
    color: var(--fd-primary);
}

.fd-header__menu a:hover::after {
    width: 100%;
}

.fd-header__cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fd-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--fd-text);
}

.fd-header__phone svg {
    width: 20px;
    height: 20px;
    color: var(--fd-primary);
}

.fd-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

.fd-header__toggle span {
    width: 24px;
    height: 2px;
    background: var(--fd-secondary);
    transition: var(--fd-transition-fast);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.fd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--fd-radius-md);
    border: none;
    cursor: pointer;
    transition: var(--fd-transition);
    text-decoration: none;
}

.fd-btn svg {
    width: 20px;
    height: 20px;
}

.fd-btn--primary {
    background: var(--fd-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(var(--fd-primary-rgb), 0.3);
}

.fd-btn--primary:hover {
    background: var(--fd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--fd-primary-rgb), 0.4);
}

.fd-btn--secondary {
    background: var(--fd-secondary);
    color: #fff;
}

.fd-btn--secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.fd-btn--outline {
    background: transparent;
    color: var(--fd-primary);
    border: 2px solid var(--fd-primary);
}

.fd-btn--outline:hover {
    background: var(--fd-primary);
    color: #fff;
}

.fd-btn--white {
    background: #fff;
    color: var(--fd-primary);
}

.fd-btn--white:hover {
    background: var(--fd-bg-light);
}

.fd-btn--large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ==========================================================================
   HERO SECTION (Full-Width Banner)
   ========================================================================== */

.fd-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--fd-header-height);
    background: linear-gradient(180deg, var(--fd-bg-light) 0%, var(--fd-bg-white) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hero MIT Hintergrundbild */
.fd-hero--has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fd-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.fd-hero .fd-container {
    position: relative;
    z-index: 2;
}

.fd-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

/* Wenn Hintergrundbild vorhanden - weiße Texte */
.fd-hero--has-bg .fd-hero__title {
    color: #fff;
}

.fd-hero--has-bg .fd-hero__text {
    color: rgba(255,255,255,0.9);
}

.fd-hero--has-bg .fd-hero__badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.fd-hero--has-bg .fd-btn--outline {
    border-color: #fff;
    color: #fff;
}

.fd-hero--has-bg .fd-btn--outline:hover {
    background: #fff;
    color: var(--fd-primary);
}

.fd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--fd-primary-rgb), 0.1);
    color: var(--fd-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.fd-hero__badge svg {
    width: 16px;
    height: 16px;
}

.fd-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.fd-hero__text {
    font-size: 1.25rem;
    color: var(--fd-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fd-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.fd-hero--centered .fd-hero__buttons {
    justify-content: center;
}

.fd-hero__image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--fd-bg-light) 0%, #e0e0e0 100%);
    border-radius: var(--fd-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-text-muted);
    font-size: 1.25rem;
}

/* ==========================================================================
   FEATURES / USP SECTION
   ========================================================================== */

.fd-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fd-feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--fd-radius-lg);
    transition: var(--fd-transition);
}

.fd-feature:hover {
    background: var(--fd-bg-light);
    transform: translateY(-4px);
}

.fd-feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fd-primary) 0%, var(--fd-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-feature__icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    stroke: #fff;
    fill: none;
}

.fd-feature__title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.fd-feature__text {
    font-size: 0.95rem;
    color: var(--fd-text-light);
    line-height: 1.5;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */

.fd-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fd-product {
    background: #fff;
    border-radius: var(--fd-radius-lg);
    overflow: hidden;
    box-shadow: var(--fd-shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--fd-transition);
}

.fd-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--fd-shadow-hover);
    border-color: transparent;
}

.fd-product__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--fd-bg-light);
}

.fd-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fd-product:hover .fd-product__image img {
    transform: scale(1.05);
}

.fd-product__content {
    padding: 24px;
}

.fd-product__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.fd-product__text {
    color: var(--fd-text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.fd-product__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fd-primary);
    font-weight: 600;
}

.fd-product__link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--fd-transition-fast);
}

.fd-product:hover .fd-product__link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   SERVICE PAKETE
   ========================================================================== */

.fd-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fd-service {
    background: #fff;
    border-radius: var(--fd-radius-lg);
    padding: 40px 30px;
    border: 2px solid var(--fd-bg-light);
    transition: var(--fd-transition);
    position: relative;
}

.fd-service:hover {
    border-color: var(--fd-primary);
    box-shadow: var(--fd-shadow-lg);
}

.fd-service--featured {
    border-color: var(--fd-primary);
    transform: scale(1.02);
}

.fd-service--featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fd-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fd-service__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.fd-service__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fd-primary);
    margin-bottom: 24px;
}

.fd-service__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--fd-text-muted);
}

.fd-service__list {
    margin-bottom: 30px;
}

.fd-service__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--fd-text);
}

.fd-service__list svg {
    width: 20px;
    height: 20px;
    color: var(--fd-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   PLAKATSERVICE SECTION (mit Shimmer)
   ========================================================================== */

.fd-plakatservice {
    background: linear-gradient(135deg, var(--fd-primary) 0%, var(--fd-primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.fd-plakatservice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.1) 50%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-50%); }
    50% { transform: translateX(0%); }
}

.fd-plakatservice h2,
.fd-plakatservice h3 {
    color: #fff;
}

.fd-plakatservice p {
    color: rgba(255,255,255,0.9);
}

.fd-plakatservice__inner {
    position: relative;
    z-index: 1;
}

.fd-plakatservice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.fd-plakatservice__item {
    text-align: center;
}

.fd-plakatservice__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-plakatservice__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.fd-plakatservice__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.fd-plakatservice__tag {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.fd-plakatservice__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.fd-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.fd-faq__item {
    border-bottom: 1px solid var(--fd-bg-light);
}

.fd-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fd-secondary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.fd-faq__question svg {
    width: 24px;
    height: 24px;
    color: var(--fd-primary);
    transition: transform var(--fd-transition);
}

.fd-faq__item.is-open .fd-faq__question svg {
    transform: rotate(180deg);
}

.fd-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fd-faq__item.is-open .fd-faq__answer {
    max-height: 500px;
}

.fd-faq__answer-inner {
    padding-bottom: 24px;
    color: var(--fd-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.fd-cta {
    background: linear-gradient(135deg, var(--fd-primary) 0%, var(--fd-primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.fd-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.fd-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.fd-footer {
    background: var(--fd-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.fd-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.fd-footer__brand p {
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
}

.fd-footer__logo {
    display: inline-block;
}

.fd-footer__logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--fd-transition-fast);
}

.fd-footer__logo-img:hover {
    opacity: 1;
}

.fd-footer__logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.fd-footer__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fd-footer__links li {
    margin-bottom: 12px;
}

.fd-footer__links a:hover {
    color: var(--fd-primary-light);
}

.fd-footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fd-footer__contact svg {
    width: 20px;
    height: 20px;
    color: var(--fd-primary-light);
}

.fd-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

.fd-footer__legal {
    display: flex;
    gap: 30px;
}

.fd-footer__legal a:hover {
    color: #fff;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.fd-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.fd-mobile-nav.is-open {
    transform: translateX(0);
}

.fd-mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.fd-mobile-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fd-mobile-nav__menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fd-secondary);
    border-bottom: 1px solid var(--fd-bg-light);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .fd-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fd-hero__buttons {
        justify-content: center;
    }
    
    .fd-hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .fd-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fd-products__grid,
    .fd-services__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .fd-service--featured {
        transform: none;
        order: -1;
    }
    
    .fd-plakatservice__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fd-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --fd-header-height: 70px;
    }
    
    .fd-section {
        padding: 60px 0;
    }
    
    .fd-header__menu,
    .fd-header__phone {
        display: none;
    }
    
    .fd-header__toggle {
        display: flex;
    }
    
    .fd-features__grid {
        grid-template-columns: 1fr;
    }
    
    .fd-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .fd-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .fd-footer__legal {
        justify-content: center;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-primary { color: var(--fd-primary); }
.text-muted { color: var(--fd-text-muted); }

.bg-light { background: var(--fd-bg-light); }
.bg-dark { background: var(--fd-bg-dark); color: #fff; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* WordPress Core */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
