:root {
    --lavender-soft: #e6e6fa;
    --mint-fresh: #f0fff0;
    --pink-pastel: #fff0f5;
    --text-slate: #4a4a4a;
    --green-vine: #556b2f;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--mint-fresh);
    color: var(--text-slate);
    font-family: var(--font-body);
    background-image: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #fff0f5 100%);
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@300;400;700&display=swap');

h1,
h2,
h3,
h4 {
    font-family: var(--font-script);
    color: var(--green-vine);
}

h1.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
    color: #6a5acd;
    /* Slate Blue for title */
}

h2.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '❀';
    display: block;
    font-size: 1.5rem;
    color: #ccaabb;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Components */
.spring-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(85, 107, 47, 0.1);
    /* Slight green shadow */
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid white;
}

.spring-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed #e0e0e0;
    border-radius: 15px;
    pointer-events: none;
}

.icon-floral {
    color: #9370db;
    /* Medium Purple */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--pink-pastel);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

/* Hero Animation */
.flower-container {
    height: 180px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-flower {
    font-size: 5rem;
    color: #ff69b4;
    /* Hot Pink */
    animation: bloom 3s ease-in-out infinite alternate;
    z-index: 2;
}

.leaf-left,
.leaf-right {
    font-size: 3rem;
    color: var(--green-vine);
    position: absolute;
    z-index: 1;
}

.leaf-left {
    transform: rotate(-45deg) translate(-40px, 20px);
    animation: swayLeft 3s infinite ease-in-out;
}

.leaf-right {
    transform: rotate(45deg) translate(40px, 20px);
    animation: swayRight 3s infinite ease-in-out;
}

@keyframes bloom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

@keyframes swayLeft {

    0%,
    100% {
        transform: rotate(-45deg) translate(-40px, 20px);
    }

    50% {
        transform: rotate(-55deg) translate(-40px, 20px);
    }
}

@keyframes swayRight {

    0%,
    100% {
        transform: rotate(45deg) translate(40px, 20px);
    }

    50% {
        transform: rotate(55deg) translate(40px, 20px);
    }
}

/* Buttons */
.btn-spring {
    background: #9370db;
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 40px;
    border: none;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.4);
    transition: all 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-spring:hover {
    background: #8a2be2;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

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

.flower-box {
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
    /* Circle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Simple petals effect with box-shadows? Maybe too complex. Just circles. */

.flower-box span {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-slate);
    font-size: 1.5rem;
    line-height: 1;
}

.flower-box small {
    font-size: 0.6rem;
    color: #999;
    text-transform: uppercase;
}

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

.btn-music-spring {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: #9370db;
    border: 2px solid #9370db;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}