:root {
    --pastel-green: #e0f2e9;
    --sage-green: #8cae9e;
    --soft-blue: #d4ebf2;
    --soft-pink: #f7d6e0;
    --classic-text: #5d6d7e;
    --white-soft: #fcfcfc;
    --font-elegant: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--white-soft);
    color: var(--classic-text);
    font-family: var(--font-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(247, 214, 224, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 235, 242, 0.2) 0%, transparent 20%);
    background-attachment: fixed;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

h1,
h2,
h3 {
    font-family: var(--font-elegant);
    font-weight: 700;
}

h1.hero-title {
    font-size: 3.5rem;
    color: var(--sage-green);
    font-style: italic;
    margin-bottom: 0.5rem;
}

h2.section-title {
    font-size: 2.5rem;
    color: var(--sage-green);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '❦';
    /* Floral dingbat */
    display: block;
    font-size: 1.5rem;
    color: var(--soft-pink);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Components */
.botanical-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    /* Classic slight radius, not too round */
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    position: relative;
}

.botanical-card::before,
.botanical-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

/* Stork Animation (Hero) */
.stork-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.stork-icon {
    font-size: 5rem;
    color: var(--classic-text);
    position: absolute;
    top: 50%;
    left: -10%;
    animation: flyAcross 15s linear infinite;
    display: flex;
    align-items: center;
}

.baby-bundle {
    font-size: 3rem;
    margin-left: -5px;
    margin-top: 20px;
    color: var(--soft-pink);
    /* Or blue dynamic */
    animation: swing 2s ease-in-out infinite;
}

@keyframes flyAcross {
    0% {
        left: -10%;
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-20px);
    }

    100% {
        left: 110%;
        transform: translateY(0);
    }
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.cloud {
    position: absolute;
    color: #eef;
    opacity: 0.8;
}

.c1 {
    top: 20%;
    left: 10%;
    font-size: 4rem;
    animation: floatCloud 20s linear infinite;
}

.c2 {
    top: 60%;
    left: 70%;
    font-size: 3rem;
    animation: floatCloud 25s linear infinite reverse;
}

@keyframes floatCloud {
    from {
        transform: translateX(-20px);
    }

    to {
        transform: translateX(20px);
    }
}

/* Buttons */
.btn-botanical {
    background: var(--sage-green);
    color: white;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
    padding: 10px 40px;
    border-radius: 4px;
    /* classic button */
    border: 1px solid var(--sage-green);
    transition: all 0.4s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-botanical:hover {
    background: transparent;
    color: var(--sage-green);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Countdown */
.botanical-countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.time-unit span {
    display: block;
    font-family: var(--font-elegant);
    font-size: 3rem;
    line-height: 1;
    color: var(--classic-text);
}

.time-unit small {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-classic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--sage-green);
    border: 1px solid var(--sage-green);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}