:root {
    --bg-color: #FDFBFD;
    /* Very light lilac tint */
    --text-color: #6A5ACD;
    /* Slate Blue/Lilac dark */
    --accent-color: #C8A2C8;
    /* Lilac */
    --secondary-color: #8FBC8F;
    /* Sage Green */
    --gold: #D4AF37;
    --card-bg: rgba(255, 255, 255, 0.9);
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    background-image: radial-gradient(#C8A2C8 1px, transparent 1px);
    background-size: 40px 40px;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.big-font {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 2px 2px 0px rgba(200, 162, 200, 0.3);
}

.medium-font {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

/* --- Layout --- */
.section-padding {
    padding: 5rem 1rem;
    position: relative;
}

/* --- Garden Card --- */
.garden-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.garden-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

.garden-card:hover {
    transform: translateY(-5px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(200, 162, 200, 0.1) 100%);
}

.hero-image-container {
    width: 280px;
    height: 380px;
    margin: 2rem auto;
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 150px 150px 20px 20px;
    /* Arch shape */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 140px 140px 10px 10px;
}

/* --- Butterfly Animation --- */
.butterfly {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8A2C8'%3E%3Cpath d='M12 2C12 2 10 4 10 6C10 8 12 10 12 10C12 10 14 8 14 6C14 4 12 2 12 2ZM6 6C6 6 4 8 4 10C4 12 6 14 6 14C6 14 8 12 8 10C8 8 6 6 6 6ZM18 6C18 6 20 8 20 10C20 12 18 14 18 14C18 14 16 12 16 10C16 8 18 6 18 6Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: float 10s infinite linear;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

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

/* --- Buttons --- */
.btn-garden {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(200, 162, 200, 0.4);
}

.btn-garden:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto 10px;
    border: 2px solid var(--bg-color);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 700;
}

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

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .big-font {
        font-size: 3.5rem;
    }

    .hero-image-container {
        width: 80%;
    }
}

/* --- Garden Gallery --- */
.garden-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.gallery-item-garden img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item-garden:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 25px rgba(200, 162, 200, 0.3);
}

/* --- Garden Timeline --- */
.garden-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 30px;
}

.garden-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--secondary-color) 0, var(--secondary-color) 10px, transparent 10px, transparent 20px);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item .icon {
    position: absolute;
    left: -35px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-item .info {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: left;
    border-left: 5px solid var(--accent-color);
}

.timeline-item .time {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-item .info h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.timeline-item .info p {
    margin: 0;
    color: #888;
}