body {
    margin: 0;
    background: #fff9f3;
    font-family: Georgia, serif;
    color: #5d4b43;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    overflow: hidden;
}

/* Decorative images (butterflies, bees) - moved to corners */
.hero-section img[src*="Butterflies"],
.hero-section img[src*="bee-flying"] {
    position: fixed;
    width: 80px;
    height: auto;
    opacity: 0.8;
}

/* Position each butterfly and bee in corners */
.hero-section img[src*="butterfly-1"] {
    top: 20px;
    left: 20px;
}

.hero-section img[src*="butterfly-2"] {
    top: 100px;
    right: 30px;
}

.hero-section img[src*="butterfly-3"] {
    bottom: 150px;
    left: 40px;
}

.hero-section img[src*="bee-flying"] {
    bottom: 100px;
    right: 50px;
}

/* Hero content positioning */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero tree background */
.hero-content img:nth-child(1) {
    position: absolute;
    width: 600px;
    max-width: 95vw;
    height: auto;
    top: -20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: contain;
}

/* Hero pooh image */
.hero-content img:nth-child(2) {
    width: 150px;
    max-width: 70vw;
    height: auto;
    position: absolute;
    z-index: 5;
    left: 48%;
    top: 8%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: normal;
    color: #5d4b43;
    margin: 60px 0 0 0;
    line-height: 1.1;
    white-space: nowrap;
    position: relative;
    z-index: 15;
}

h1 .hunny {
    color: #d4a8b5;
    font-style: italic;
    font-weight: bold;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 600px;
    margin: 60px auto 0 auto;
    color: #5d4b43;
    line-height: 1.6;
    position: relative;
    z-index: 15;
}

.hero-subtitle .baby-name {
    color: #d4a8b5;
    font-weight: bold;
}

.date-badge {
    margin-top: 35px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 100%);
    color: #5d4b43;
    border-radius: 25px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 168, 181, 0.2);
    position: relative;
    z-index: 15;
}

.scroll-cue {
    margin-top: 50px;
    color: #d4a8b5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
    animation: bounce 2s infinite;
    display: block;
    position: relative;
    z-index: 15;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Story Section */
.story-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: #fff9f3;
}

.story-door {
    width: 250px;
    max-width: 90vw;
    height: auto;
    margin-bottom: 40px;
}

.story-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #5d4b43;
    margin: 0 0 30px 0;
    font-weight: normal;
}

.story-section p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 650px;
    line-height: 1.8;
    color: #5d4b43;
}

/* General Styles */
p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 20px auto 0 auto;
}

.storybook-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.storybook-card img {
    width: 150px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.storybook-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #5d4b43;
    margin: 0 0 20px 0;
    font-weight: normal;
}

.primary-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #d4a8b5;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: #c29aaa;
}

/* Details Section */
.details-section {
    padding: 80px 20px;
    background: #fff9f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.details-grid h3 {
    color: #d4a8b5;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 0 0 10px 0;
}

.details-grid p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin: 0;
}

.small-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Registry Section */
.registry-section {
    padding: 80px 20px;
    background: #fff9f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Livestream Section */
.livestream-section .storybook-card > img {
    animation: bounce 2s infinite;
}

.honey-status {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    background: #f9f4f0;
    padding: 20px;
    border-radius: 15px;
}

.honey-status img {
    width: 120px;
    height: auto;
}

.honey-status h3 {
    margin: 0 0 5px 0;
    color: #5d4b43;
}

.honey-status p {
    margin: 0;
    font-size: 1rem;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #e8d4c4;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #d4a8b5 0%, #e8b4c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Countdown Section */
.countdown-section {
    padding: 80px 20px;
    background: #fff9f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.countdown-box {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
}

.countdown-box span {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #d4a8b5;
    margin-bottom: 10px;
}

.countdown-box p {
    font-size: 0.95rem;
    color: #5d4b43;
    margin: 0;
}

/* Closing Section */
.closing-section .storybook-card img {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.storybook-card blockquote {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: #d4a8b5;
    margin: 20px 0;
}

.love-note {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #5d4b43;
    margin: 30px 0 50px 0;
    line-height: 1.8;
}

.contact-note {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #999;
    margin: 20px 0 0 0;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content img {
        width: 250px;
    }
    
    .storybook-card img {
        width: 120px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .honey-status {
        flex-direction: column;
        text-align: center;
    }
}