* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-pale: #FAF5F5;
    --pink-blush: #F5E6E8;
    --pink-muted: #E8C4C4;
    --pink-dusty: #D4A5A5;
    --pink-rose: #C9979A;
    --cream: #FDFCFB;
    --text-primary: #3D3D3D;
    --text-secondary: #6B6B6B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pink-pale);
    position: relative;
    overflow: hidden;
}

/* Minimal floating elements */
.sprinkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sprinkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.4;
    animation: gentleFloat 8s ease-in-out infinite;
}

.sprinkle:nth-child(1) { background: var(--pink-dusty); left: 15%; top: 25%; animation-delay: 0s; }
.sprinkle:nth-child(2) { background: var(--pink-muted); left: 25%; top: 65%; animation-delay: 1s; }
.sprinkle:nth-child(3) { background: var(--pink-rose); left: 75%; top: 20%; animation-delay: 2s; }
.sprinkle:nth-child(4) { background: var(--pink-dusty); left: 85%; top: 60%; animation-delay: 3s; }
.sprinkle:nth-child(5) { background: var(--pink-muted); left: 10%; top: 80%; animation-delay: 4s; }
.sprinkle:nth-child(6), .sprinkle:nth-child(7), .sprinkle:nth-child(8), .sprinkle:nth-child(9), .sprinkle:nth-child(10) {
    display: none;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.6;
    }
}

/* Ice cream - subtle animation */
.ice-cream {
    animation: gentleBob 2.5s ease-in-out infinite;
}

@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.ice-cream-svg {
    width: 160px;
    height: 260px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.06));
}

.scoop {
    transition: transform 0.3s ease;
}

.cherry {
    animation: none;
}

@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-hint span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1rem;
    color: var(--pink-rose);
    animation: subtleArrow 2s ease-in-out infinite;
}

@keyframes subtleArrow {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== BIRTHDAY MESSAGE SECTION ===== */
.birthday-message {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 60px 24px;
}

.birthday-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.birthday-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 8px;
    letter-spacing: -0.02em;
}

.hearts {
    margin: 40px 0;
    display: flex;
    gap: 16px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.heart {
    font-size: 1.5rem;
    opacity: 0.7;
    cursor: pointer;
    transition: transform 0.2s ease;
}

@media (hover: hover) {
    .heart:hover {
        transform: scale(1.3);
    }
}

.peepo-love {
    width: 80px;
    height: auto;
    opacity: 0;
    position: absolute;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.peepo-love.visible {
    opacity: 1;
    transform: translateY(0);
}

.birthday-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.birthday-from {
    margin-top: 48px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== GIFT SECTION ===== */
.gift-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pink-pale);
    padding: 60px 24px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 48px;
    text-align: center;
}

.gift-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-box {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gift-box:hover {
    transform: scale(1.02);
}

.gift-box.opened {
    display: none;
}

.gift-base {
    width: 180px;
    height: 130px;
    background: var(--pink-muted);
    border-radius: 4px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
}

.gift-base::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: var(--pink-blush);
    left: 50%;
    transform: translateX(-50%);
}

.gift-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 1;
    letter-spacing: 0.05em;
}

.gift-lid {
    width: 196px;
    height: 32px;
    background: var(--pink-muted);
    border-radius: 4px;
    margin: 0 auto 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.gift-lid::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 100%;
    background: var(--pink-blush);
    left: 50%;
    transform: translateX(-50%);
}

.gift-bow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.gift-bow::before,
.gift-bow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 28px;
    background: var(--pink-dusty);
    border-radius: 50%;
    top: 8px;
}

.gift-bow::before {
    left: 2px;
    transform: rotate(-20deg);
}

.gift-bow::after {
    right: 2px;
    transform: rotate(20deg);
}

/* Gift reveal */
.gift-reveal {
    display: none;
    text-align: center;
}

.gift-reveal.visible {
    display: block;
    animation: revealFade 0.6s ease-out;
}

@keyframes revealFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-content {
    background: white;
    padding: 48px 64px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    min-width: 480px;
    max-width: 90vw;
}

.ice-cream-maker-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.ice-cream-maker-img {
    width: 360px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
}

.reveal-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.reveal-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Confetti - more subtle */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: confettiFall 4s ease-out forwards;
}

.confetti:nth-child(1) { background: var(--pink-dusty); left: 15%; animation-delay: 0s; }
.confetti:nth-child(2) { background: var(--pink-muted); left: 35%; animation-delay: 0.3s; }
.confetti:nth-child(3) { background: var(--pink-rose); left: 55%; animation-delay: 0.5s; }
.confetti:nth-child(4) { background: var(--pink-dusty); left: 75%; animation-delay: 0.7s; }
.confetti:nth-child(5) { background: var(--pink-muted); left: 90%; animation-delay: 0.9s; }

@keyframes confettiFall {
    0% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(250px);
        opacity: 0;
    }
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 60px 24px;
}

.schedule-reveal-box {
    background: var(--pink-muted);
    padding: 24px 48px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.schedule-reveal-box:hover {
    transform: scale(1.02);
}

.schedule-reveal-box.hidden {
    display: none;
}

.schedule-reveal-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.schedule-card {
    background: white;
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
    max-width: 360px;
    width: 100%;
    display: none;
}

.schedule-card.visible {
    display: block;
    animation: revealFade 0.6s ease-out;
}

.schedule-footer {
    display: none;
}

.schedule-footer.visible {
    display: block;
    animation: revealFade 0.6s ease-out 0.2s both;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--pink-pale);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(4px);
}

.schedule-icon {
    font-size: 2rem;
}

.schedule-details h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.schedule-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.schedule-divider {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.divider-arrow {
    font-size: 1.2rem;
    color: var(--pink-dusty);
    opacity: 0.6;
}

.schedule-footer {
    margin-top: 48px;
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .birthday-title {
        font-size: 1.5rem;
    }
    
    .birthday-name {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .ice-cream-svg {
        width: 130px;
        height: 210px;
    }
    
    .schedule-card {
        padding: 32px;
    }
}
