:root {
    --bg-color: #F0F8FF;
    --text-color: #78909C;
    --accent-color: #81D4FA;
    --gold-color: #FFD700;
    --white: #FFFFFF;
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Quicksand', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

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

.big-font {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #fff;
}

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

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

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

/* --- Cloud Card --- */
.cloud-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 50px;
    /* Rounded for cloud feel */
    box-shadow: 0 10px 30px rgba(129, 212, 250, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid #E1F5FE;
}

.cloud-card:hover {
    transform: translateY(-10px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(to bottom, #E1F5FE 0%, #F0F8FF 100%);
    overflow: hidden;
}

/* Cloud Animation */
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: floatCloud 20s linear infinite;
    z-index: 1;
}

.cloud::after,
.cloud::before {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud.one {
    width: 100px;
    height: 40px;
    top: 10%;
    left: -10%;
    animation-duration: 25s;
}

.cloud.one::after {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud.one::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 40px;
}

.cloud.two {
    width: 140px;
    height: 60px;
    top: 20%;
    left: -20%;
    animation-duration: 35s;
    animation-delay: 5s;
}

.cloud.two::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud.two::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 50px;
}

.cloud.three {
    width: 80px;
    height: 30px;
    top: 60%;
    left: -10%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.cloud.three::after {
    width: 30px;
    height: 30px;
    top: -15px;
    left: 10px;
}

.cloud.three::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 30px;
}

@keyframes floatCloud {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.hero-image-container {
    width: 250px;
    height: 250px;
    margin: 2rem auto;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(129, 212, 250, 0.4);
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Buttons --- */
.btn-angel {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    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(129, 212, 250, 0.4);
}

.btn-angel:hover {
    background-color: #4FC3F7;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

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

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

.countdown-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    /* Circle/Cloud shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(129, 212, 250, 0.2);
    margin: 0 auto 10px;
    border: 3px solid #E1F5FE;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-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: var(--white);
    border: 2px solid var(--accent-color);
    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);
    transition: all 0.3s ease;
}

.btn-music-circle:hover {
    background: var(--accent-color);
    color: #fff;
}

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

    .hero-image-container {
        width: 200px;
        height: 200px;
    }

    .angel-timeline::before {
        left: 20px;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        gap: 15px;
    }

    .step-time {
        width: 100%;
        margin-bottom: 5px;
    }

    .step-content {
        padding-left: 0;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

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

.gallery-item-angel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(129, 212, 250, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item-angel:hover {
    transform: translateY(-5px);
}

.gallery-item-angel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-angel:hover img {
    transform: scale(1.05);
}

/* --- Angel Timeline (Cloud Steps) --- */
.angel-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

/* Dotted line connector */
.angel-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 3px dashed #B3E5FC;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    background: #fff;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(129, 212, 250, 0.15);
    border: 3px solid #E1F5FE;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Changed from space-between to center */
    gap: 30px;
    /* Added gap for spacing */
    transition: transform 0.3s ease;
}

.timeline-step:hover {
    transform: scale(1.03);
    border-color: var(--accent-color);
}

.step-time {
    background: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(129, 212, 250, 0.3);
}

.step-content {
    flex-grow: 0;
    /* Changed from 1 to 0 to prevent stretching */
    text-align: left;
    padding-left: 0;
    /* Removed padding, using gap instead */
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    color: var(--accent-color);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: #E1F5FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.step-info p {
    margin: 0;
    font-size: 1rem;
    color: #90A4AE;
    font-weight: 500;
}