/* ============================================
   KAYDEES PÂTISSERIE - Main Stylesheet
   Elegant • Editorial • Parisian • Artisanal
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    --blush-pink: #E3AEA8;
    --sage-green: #B2B4A4;
    --cream: #FEF9F5;
    --soft-gold: #EED3C2;
    --text-dark: #6B5B4B;
    --text-muted: #9A8A7A;
    --white: #FFFFFF;
    --border-light: #EDE8E1;
    --overlay-dark: rgba(107, 91, 75, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled {
    box-shadow: 0 2px 20px rgba(107, 91, 75, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo img {
    height: 100px;
    width: auto;
}

/* Hero Logo */
.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blush-pink);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--blush-pink);
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 130px 60px 40px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-text {
    max-width: 540px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 30px 60px rgba(107, 91, 75, 0.15);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blush-pink) 0%, #CDA09C 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(227, 174, 168, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 174, 168, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--sage-green);
    border: 1px solid var(--sage-green);
}

.btn-secondary:hover {
    background: var(--sage-green);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--blush-pink);
    color: var(--blush-pink);
}

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ============================================
   FEATURED COLLECTIONS - 4 Tile Grid
   ============================================ */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 91, 75, 0.12);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
}

.collection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.collection-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.collection-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-pink);
}

.collection-link:hover {
    color: var(--sage-green);
}

/* Coming Soon badge for placeholder collections */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--soft-gold);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   EDITORIAL SECTION - The Kaydees Touch
   ============================================ */
.editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
}

.editorial-image {
    position: relative;
}

.editorial-image img {
    width: 100%;
    max-width: 500px;
}

.editorial-content {
    max-width: 480px;
}

.editorial-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 20px;
}

.editorial-title {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.editorial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.editorial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--blush-pink);
    margin: 30px 0;
    padding-left: 24px;
    border-left: 2px solid var(--soft-gold);
}

/* ============================================
   SEASONAL SPOTLIGHT
   ============================================ */
.spotlight {
    text-align: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(227,174,168,0.08) 0%, rgba(178,180,164,0.08) 100%);
}

.spotlight-image {
    max-width: 400px;
    margin: 0 auto 40px;
}

.spotlight-image img {
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(107, 91, 75, 0.15);
}

.spotlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.spotlight-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 91, 75, 0.1);
    border-color: var(--blush-pink);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--blush-pink);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    text-align: center;
    padding: 80px 60px;
    background: var(--white);
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.newsletter-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    min-width: 260px;
    padding: 16px 24px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-light);
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--blush-pink);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 40px 60px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto auto 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-logo img {
    height: 200px;
}

.footer-tagline-social {
    display: flex;
    flex-direction: column;
}

.footer-social-stacked {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-stacked a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(253, 246, 233, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-stacked a:hover {
    background: var(--blush-pink);
    border-color: var(--blush-pink);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(253, 246, 233, 0.8);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(253, 246, 233, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--blush-pink);
    border-color: var(--blush-pink);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--cream);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 246, 233, 0.7);
}

.footer-links a:hover {
    color: var(--blush-pink);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(253, 246, 233, 0.7);
    margin-bottom: 12px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(253, 246, 233, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 246, 233, 0.5);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ============================================
   PRODUCT GRID (Collection Pages)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 91, 75, 0.12);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 28px;
    text-align: center;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-order {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush-pink);
}

.product-order:hover {
    color: var(--sage-green);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    padding: 200px 60px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(227,174,168,0.05) 0%, rgba(178,180,164,0.05) 100%);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE - Story Section
   ============================================ */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    max-width: 520px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 20px;
}

.story-image img {
    max-width: 450px;
    border-radius: 4px;
}

/* Credentials */
.credentials {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.credential {
    text-align: center;
}

.credential-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.credential-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--blush-pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--blush-pink);
}

.contact-whatsapp {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-align: center;
}

.contact-whatsapp h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-whatsapp p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ============================================
   SUCCESS MESSAGES
   ============================================ */
.message-success {
    padding: 20px 30px;
    background: rgba(155, 182, 160, 0.15);
    border: 1px solid var(--sage-green);
    color: var(--sage-green);
    text-align: center;
    margin-bottom: 20px;
}

.message-error {
    padding: 20px 30px;
    background: rgba(233, 175, 163, 0.15);
    border: 1px solid var(--blush-pink);
    color: var(--blush-pink);
    text-align: center;
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-tagline-social {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-social-stacked {
        flex-direction: row;
        justify-content: center;
    }
    
    .navbar {
        padding: 12px 30px;
    }
    
    .nav-logo img {
        height: 80px;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content,
    .editorial,
    .story-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        padding: 140px 30px 40px;
    }
    
    .hero-image {
        order: -1;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .section,
    .editorial,
    .page-header {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: 1;
    }
    
    .footer-tagline-social {
        grid-column: 1;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-stacked {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .credentials {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }
