/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Postcard Opening Animation */
.postcard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810 0%, #5d4e37 50%, #8b4513 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Enhanced Button Loading State */
.open-invitation-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.open-invitation-btn:active {
    transform: scale(0.95);
}

.open-invitation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.open-invitation-btn:hover::before {
    left: 100%;
}

/* Bee Cursor Theme */
* {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGV4dCB5PSIxOCIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzhGNEE1MyI+8J+QnTwvdGV4dD48L3N2Zz4K'), auto;
}

button, a, .clickable, .carousel-btn, .gender-btn, .open-invitation-btn, .cta-button, .nav-link, .instagram-link, [onclick] {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGV4dCB5PSIxOCIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzhGNEE1MyI+8J+QnTwvdGV4dD48L3N2Zz4K'), pointer;
}

/* Hover states for buttons and interactive elements */
button:hover, a:hover, .clickable:hover, .carousel-btn:hover, .gender-btn:hover, .open-invitation-btn:hover, .cta-button:hover, .nav-link:hover, .instagram-link:hover, [onclick]:hover {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGV4dCB5PSIxOCIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzhGNEE1MyI+8J+QnTwvdGV4dD48L3N2Zz4K'), pointer;
}

input, textarea, select {
    cursor: text;
}

/* Hover states for input fields */
input:hover, textarea:hover, select:hover {
    cursor: text;
}

/* Honey drop game cursor */
.honey-drop {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGV4dCB5PSIxOCIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzhGNEE1MyI+8J+QnTwvdGV4dD48L3N2Zz4K'), pointer;
}

.honey-drop:hover {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48dGV4dCB5PSIxOCIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzhGNEE1MyI+8J+QnTwvdGV4dD48L3N2Zz4K'), pointer;
}

/* Honey Drop Game Styles */
.honey-game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.95);
    z-index: 15000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.honey-game-container {
    background: linear-gradient(135deg, #fff8dc 0%, #f5deb3 100%);
    border-radius: 20px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    height: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffd700;
}

.game-header h3 {
    color: #8b4513;
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.game-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.honey-score {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    padding: 8px 15px;
    border-radius: 20px;
    color: #8b4513;
    font-weight: bold;
    font-family: 'Kalam', cursive;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.close-game-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-game-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.game-area {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, #87ceeb 0%, #98fb98 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.game-message {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 20px;
    color: #8b4513;
    font-family: 'Kalam', cursive;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.honey-drop {
    position: absolute;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    animation: fallDown 4s linear forwards;
    transition: transform 0.1s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honey-drop:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.honey-drop.collected {
    animation: collectHoney 0.5s ease forwards;
}

@keyframes fallDown {
    from {
        top: -50px;
        opacity: 1;
    }
    to {
        top: 450px;
        opacity: 0.7;
    }
}

@keyframes collectHoney {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

.collected-facts {
    margin-top: 15px;
    max-height: 100px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 248, 220, 0.5);
    border-radius: 10px;
    border: 1px solid #ffd700;
}

.fact-item {
    background: linear-gradient(135deg, #fff8dc 0%, #f0e68c 100%);
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 15px;
    color: #8b4513;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    border-left: 4px solid #ffd700;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.honey-game-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #8b4513;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Kalam', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.honey-game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
}

.honey-game-btn:active {
    transform: translateY(-1px);
}

/* Mobile Responsive for Honey Game */
@media (max-width: 768px) {
    .honey-game-container {
        width: 95vw;
        height: 80vh;
        padding: 15px;
    }
    
    .game-header h3 {
        font-size: 1.2rem;
    }
    
    .game-area {
        height: 300px;
    }
    
    .honey-drop {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .honey-game-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Navigation Personalization Styles */
.nav-personalization {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 20px;
}

.honey-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    padding: 5px 12px;
    border-radius: 20px;
    color: #8b4513;
    font-weight: bold;
    font-family: 'Kalam', cursive;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.honey-counter:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.honey-icon {
    font-size: 1.2rem;
    animation: honeyGlow 2s ease-in-out infinite alternate;
}

@keyframes honeyGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.3) drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); }
}

.guest-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Kalam', cursive;
    font-size: 0.9rem;
}

.progress-bar {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Navigation Personalization */
@media (max-width: 768px) {
    .nav-personalization {
        gap: 10px;
        margin-right: 10px;
    }
    
    .honey-counter {
        padding: 4px 8px;
        font-size: 0.9rem;
    }
    
    .progress-bar {
        width: 60px;
        height: 6px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
    
    .guest-progress {
        display: none; /* Hide progress bar on mobile to save space */
    }
}

/* Personalized Welcome Banner */
.personalized-welcome {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 183, 71, 0.1) 100%);
    padding: 15px 20px;
    margin: 20px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    color: #8b4513;
    font-family: 'Kalam', cursive;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    animation: welcomeFadeIn 0.5s ease;
}

@keyframes welcomeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-name {
    font-weight: bold;
    color: #d4a574;
}

.welcome-stats {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* Achievement Badges */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #8b4513;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Kalam', cursive;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: badgeAppear 0.5s ease;
    margin: 2px;
}

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.achievement-icon {
    font-size: 1rem;
}

/* Section completion indicators */
.section-completed::after {
    content: '✅';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    animation: checkmarkBounce 0.5s ease;
}

@keyframes checkmarkBounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}


/* Honey Transition Overlay */
.honey-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 50%, transparent 100%);
    backdrop-filter: blur(1px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Honey Drip Transition Particles */
.honey-drip-transition {
    position: fixed;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #ffd700, #ff8c00);
    border-radius: 2px;
    z-index: 9999;
    animation: honeyDripFall 2s ease-in forwards;
    pointer-events: none;
}

@keyframes honeyDripFall {
    0% {
        transform: translateY(-20px) scaleY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    100% {
        transform: translateY(100vh) scaleY(0.5);
        opacity: 0;
    }
}

/* Transition Bees */
.transition-bee {
    position: fixed;
    font-size: 24px;
    z-index: 9999;
    animation: beeFloatTransition 1.5s ease-in-out forwards;
    pointer-events: none;
}

@keyframes beeFloatTransition {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(-10px) rotate(5deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
    }
    80% {
        transform: translateY(-30px) rotate(3deg) scale(1);
    }
    100% {
        transform: translateY(-50px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

/* Enhanced Hero Section Transitions */
#home {
    transition: opacity 1s ease, transform 1s ease;
}

#main-navbar {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Envelope Closing Animation */
.postcard-overlay.closing {
    animation: envelopeClose 1.4s ease-in-out forwards;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Mobile-specific envelope closing animation */
@media (max-width: 768px) {
    .postcard-overlay.closing {
        animation: envelopeCloseMobile 1.2s ease-in-out forwards;
    }
    
    @keyframes envelopeCloseMobile {
        0% {
            opacity: 1;
            transform: scale(1) rotateX(0deg);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        20% {
            opacity: 1;
            transform: scale(1.02) rotateX(-2deg);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        40% {
            opacity: 0.9;
            transform: scale(1.05) rotateX(-4deg);
            clip-path: polygon(0% 0%, 50% 10%, 100% 0%, 100% 100%, 0% 100%);
        }
        60% {
            opacity: 0.7;
            transform: scale(1.1) rotateX(-6deg);
            clip-path: polygon(0% 0%, 30% 25%, 70% 25%, 100% 0%, 100% 100%, 0% 100%);
        }
        80% {
            opacity: 0.4;
            transform: scale(1.2) rotateX(-8deg);
            clip-path: polygon(0% 0%, 20% 40%, 80% 40%, 100% 0%, 100% 100%, 0% 100%);
        }
        100% {
            opacity: 0;
            transform: scale(1.3) rotateX(-10deg);
            clip-path: polygon(0% 0%, 10% 60%, 90% 60%, 100% 0%, 100% 100%, 0% 100%);
        }
    }
}

@keyframes envelopeClose {
    0% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    20% {
        opacity: 1;
        transform: scale(1.05) rotateX(-3deg);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    40% {
        opacity: 0.9;
        transform: scale(1.1) rotateX(-6deg);
        clip-path: polygon(0% 0%, 50% 15%, 100% 0%, 100% 100%, 0% 100%);
    }
    60% {
        opacity: 0.7;
        transform: scale(1.2) rotateX(-10deg);
        clip-path: polygon(0% 0%, 30% 30%, 70% 30%, 100% 0%, 100% 100%, 0% 100%);
    }
    80% {
        opacity: 0.4;
        transform: scale(1.3) rotateX(-15deg);
        clip-path: polygon(0% 0%, 20% 50%, 80% 50%, 100% 0%, 100% 100%, 0% 100%);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) rotateX(-20deg);
        clip-path: polygon(0% 0%, 10% 70%, 90% 70%, 100% 0%, 100% 100%, 0% 100%);
    }
}

.envelope {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.envelope:hover {
    transform: scale(1.05);
}

.envelope.clicked {
    transform: scale(0.8);
    opacity: 0;
    display: none;
}

.wax-seal {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #8b4513 0%, #654321 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
    margin-bottom: 40px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.envelope-text {
    text-align: center;
    color: #2c1810;
    font-family: 'Dancing Script', cursive;
}

.to-line {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.from-line {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.click-hint {
    font-size: 22px;
    font-weight: 400;
    color: #654321;
    margin-top: 25px;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.postcard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf2d1 100%);
    border-radius: 0;
    box-shadow: none;
    display: none;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.postcard.open {
    display: flex;
    animation: slideIn 0.5s ease-out;
}

/* Ensure postcard is hidden when envelope is visible */
.postcard-overlay:not(.postcard-open) .postcard {
    display: none !important;
}

/* Ensure envelope is hidden when postcard is open */
.postcard-overlay.postcard-open .envelope {
    display: none !important;
}


/* Ensure postcard overlay completely covers the screen */
.postcard-overlay.show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10000 !important;
    background: linear-gradient(135deg, #2c1810 0%, #5d4e37 50%, #8b4513 100%) !important;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.postcard-header {
    text-align: center;
    padding: 20px 40px 15px 40px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 0;
    flex-shrink: 0;
}

.postcard-title {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: #8b4513;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #ffd700, #d4a574);
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.timeline-subtitle {
    font-size: 12px;
    color: #8b4513;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

.journey-content {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 900px;
    min-height: 100px;
}

.journey-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.journey-year {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #8b4513;
    min-width: 70px;
    text-align: center;
    margin-right: 20px;
}

.journey-icon {
    font-size: 28px;
    margin-right: 20px;
    min-width: 35px;
    text-align: center;
}

.journey-text {
    flex: 1;
}

.journey-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #8b4513;
    margin-bottom: 8px;
    font-weight: 600;
}

.journey-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #5d4e37;
    margin: 0;
}

.click-hint-small {
    font-size: 12px;
    color: #8b4513;
    font-style: italic;
    opacity: 0.8;
    cursor: pointer;
}

.instagram-link {
    font-size: 12px;
    color: #8b4513;
    font-style: italic;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.instagram-link:hover {
    color: #d4a574;
    text-decoration: none;
    opacity: 1;
}

.journey-item[onclick] {
    cursor: pointer;
}

.journey-item[onclick]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Elegant Font Styling for Combined Years */
.year-2020-2021 .journey-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 25px;
    color: #8b4513;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.year-2020-2021 .journey-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #5d4e37;
}

.year-2022-2024 .journey-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 25px;
    color: #8b4513;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.year-2022-2024 .journey-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #5d4e37;
}

/* Special 2025 Event Year - Elegantly Highlighted */
.year-2025.upcoming-event {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%);
    border: 2px solid #d4a574;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.2);
    position: relative;
}

.year-2025.upcoming-event::before {
    content: "Upcoming Event";
    position: absolute;
    top: 8px;
    right: 8px;
    background: #d4a574;
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.year-2025 .journey-year {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: #8b4513;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.year-2025 .journey-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #8b4513;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.year-2025 .journey-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #5d4e37;
}

.year-2025 .journey-icon {
    font-size: 30px;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

/* Enhanced hover effect for 2025 - makes it clear it's clickable */
.year-2025.upcoming-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    border-color: #b8860b;
    cursor: pointer;
}

.year-2025.upcoming-event:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.postcard-footer {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 0;
    border-top: 2px solid rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.open-invitation-btn {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 30px;
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.open-invitation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 100%);
}

/* Travel Modal Styles */
.travel-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.travel-modal-content {
    background: linear-gradient(135deg, #fef9e7 0%, #fdf2d1 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.travel-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 15px 15px 0 0;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.travel-modal-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #8b4513;
    margin: 0;
    font-weight: 700;
}

.close-travel {
    color: #8b4513;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-travel:hover {
    color: #b8860b;
}

.travel-locations {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.travel-location {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: transform 0.3s ease;
}

.travel-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.location-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.location-name {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #8b4513;
    font-weight: 600;
}

/* Improved RSVP Attendance Buttons */
.attendance-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.attendance-btn {
    flex: 1;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 2px solid #cccccc;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.attendance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #b8860b;
    opacity: 1;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf2d1 100%);
}

.attendance-btn.selected {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.attendance-yes.selected {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
    border-color: #228B22;
    color: white;
}

.attendance-no.selected {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    border-color: #DC143C;
    color: white;
}

.btn-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.btn-text {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-style: italic;
}

/* Gender Poll Buttons */
.gender-poll-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.gender-btn {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 2px solid #cccccc;
    border-radius: 15px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.gender-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #d4a574;
    opacity: 1;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf2d1 100%);
}

.gender-btn.selected {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gender-boy.selected {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
    border-color: #1E90FF;
    color: white;
}

.gender-girl.selected {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    border-color: #FF1493;
    color: white;
}

.gender-surprise.selected {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FF8C00;
    color: white;
}

.gender-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.gender-text {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.gender-subtext {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
    display: block;
}

/* Flying Bee Animation for RSVP - More Interesting Movement */
.rsvp-bee {
    position: absolute;
    font-size: 24px;
    z-index: 1000;
    pointer-events: none;
    animation: flyToRSVP 8s ease-in-out infinite;
}

@keyframes flyToRSVP {
    0% {
        left: -50px;
        top: 30%;
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        left: 20%;
        top: 20%;
        transform: translateY(-50%) rotate(45deg) scale(1.2);
    }
    35% {
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
    }
    50% {
        left: 80%;
        top: 60%;
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
    65% {
        left: 60%;
        top: 30%;
        transform: translate(-50%, -50%) rotate(270deg) scale(0.9);
    }
    80% {
        left: 30%;
        top: 70%;
        transform: translate(-50%, -50%) rotate(360deg) scale(1.3);
    }
    90% {
        left: calc(100% + 50px);
        top: 50%;
        transform: translateY(-50%) rotate(360deg) scale(1);
        opacity: 1;
    }
    100% {
        left: calc(100% + 50px);
        top: 50%;
        transform: translateY(-50%) rotate(360deg) scale(1);
        opacity: 0;
    }
}

/* Mama and Baby Bee Guides */
.mama-bee-guide {
    position: absolute;
    font-size: 20px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.baby-bee-guide {
    position: absolute;
    font-size: 16px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

/* Bee guide animations for form fields */
.mama-bee-guide.guide-name {
    left: 20px;
    top: 200px;
    animation: guideToName 2s ease-in-out;
}

.baby-bee-guide.guide-name {
    left: 30px;
    top: 210px;
    animation: guideToName 2s ease-in-out 0.2s;
}

.mama-bee-guide.guide-email {
    left: 20px;
    top: 280px;
    animation: guideToEmail 2s ease-in-out;
}

.baby-bee-guide.guide-email {
    left: 30px;
    top: 290px;
    animation: guideToEmail 2s ease-in-out 0.2s;
}

.mama-bee-guide.guide-guests {
    left: 20px;
    top: 360px;
    animation: guideToGuests 2s ease-in-out;
}

.baby-bee-guide.guide-guests {
    left: 30px;
    top: 370px;
    animation: guideToGuests 2s ease-in-out 0.2s;
}

.mama-bee-guide.guide-attending {
    left: 20px;
    top: 440px;
    animation: guideToAttending 2s ease-in-out;
}

.baby-bee-guide.guide-attending {
    left: 30px;
    top: 450px;
    animation: guideToAttending 2s ease-in-out 0.2s;
}

@keyframes guideToName {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
}

@keyframes guideToEmail {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
}

@keyframes guideToGuests {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
}

@keyframes guideToAttending {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
}

.rsvp-section {
    position: relative;
    overflow: hidden;
}

/* RSVP Header with Back Button */
.rsvp-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.back-to-story-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 231, 0.9) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #8b4513;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-story-btn:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #8b4513;
}

.back-to-story-btn:active {
    transform: translateY(0);
}

.back-icon {
    font-size: 16px;
    font-weight: bold;
}

.back-text {
    font-size: 14px;
}

.view-submissions-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
    border: 2px solid rgba(100, 149, 237, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #4169e1;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.view-submissions-btn:hover {
    background: linear-gradient(135deg, rgba(100, 149, 237, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
    border-color: #6495ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #4169e1;
}

.view-submissions-btn:active {
    transform: translateY(0);
}

.submissions-icon {
    font-size: 16px;
}

.submissions-text {
    font-size: 14px;
}

.rsvp-title-section {
    flex: 1;
    text-align: center;
}

.rsvp-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}



/* Mobile Responsive for RSVP Header */
@media (max-width: 768px) {
    .rsvp-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .back-to-story-btn {
        align-self: center;
    }
    
    .rsvp-title-section {
        width: 100%;
    }
    
    .view-submissions-btn {
        align-self: center;
    }
}

/* RSVP Modal Styling */
.rsvp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.rsvp-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rsvp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px 20px 0 0;
}

.rsvp-modal-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #8b4513;
    margin: 0;
    font-weight: 700;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.rsvp-summary {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 231, 0.9) 100%);
}

.summary-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-card.attending {
    border-color: #28a745;
}

.stat-card.not-attending {
    border-color: #dc3545;
}

.stat-card.total-guests {
    border-color: #ffc107;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-card.attending .stat-number {
    color: #28a745;
}

.stat-card.not-attending .stat-number {
    color: #dc3545;
}

.stat-card.total-guests .stat-number {
    color: #ffc107;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}


.rsvp-list {
    padding: 25px 30px;
}

.rsvp-list h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #8b4513;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.rsvp-entries {
    max-height: 300px;
    overflow-y: auto;
}

.rsvp-entry {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #d4a574;
    transition: all 0.3s ease;
}

.rsvp-entry:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.rsvp-entry.attending {
    border-left-color: #28a745;
}

.rsvp-entry.not-attending {
    border-left-color: #dc3545;
}

.rsvp-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.rsvp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.edit-btn, .delete-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-btn:hover {
    background: #e3f2fd;
    transform: scale(1.1);
}

.delete-btn:hover {
    background: #ffebee;
    transform: scale(1.1);
}

.rsvp-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.rsvp-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.rsvp-status.attending {
    background: #d4edda;
    color: #155724;
}

.rsvp-status.not-attending {
    background: #f8d7da;
    color: #721c24;
}

.rsvp-details {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.rsvp-message {
    margin-top: 8px;
    font-style: italic;
    color: #888;
    font-size: 13px;
}

.no-rsvps {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.formspree-info {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid rgba(100, 149, 237, 0.3);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.formspree-info h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #8b4513;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.formspree-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #5d4e37;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.info-details {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.info-details p {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(100, 149, 237, 0.2);
}

.info-details p:last-child {
    border-bottom: none;
}

.info-note {
    background: rgba(255, 240, 245, 0.8);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.info-note p {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-style: italic;
}

.modal-actions {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.export-btn, .close-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.export-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.export-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.close-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.close-btn:hover {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .rsvp-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .rsvp-modal-header {
        padding: 20px;
    }
    
    .rsvp-modal-header h3 {
        font-size: 24px;
    }
    
    .summary-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .rsvp-summary, .rsvp-list, .modal-actions {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}


/* RSVP Container with Sidebar */
.rsvp-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.rsvp-form {
    flex: 1;
    max-width: 600px;
}

.rsvp-fun-facts {
    flex: 0 0 350px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.rsvp-fun-facts h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #8b4513, #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rsvp-fact-container {
    position: relative;
    min-height: 120px;
    margin-bottom: 20px;
}

.rsvp-fact-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
}

.rsvp-fact-item.active {
    opacity: 1;
    transform: translateY(0);
}

.rsvp-fact-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.rsvp-fact-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsvp-fact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.rsvp-fact-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.rsvp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rsvp-dot.active {
    background-color: #8b4513;
    transform: scale(1.2);
}

/* RSVP Fun Facts Sidebar */
.rsvp-fun-facts {
    flex: 0 0 350px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 50px;
    align-self: center;
}

.rsvp-fun-facts h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #8b4513;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.rsvp-fact-container {
    position: relative;
    min-height: 200px;
}

.rsvp-fact-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
    padding: 15px;
}

.rsvp-fact-item.active {
    opacity: 1;
    transform: translateY(0);
}

.fact-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.rsvp-fact-item .fact-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5d4e37;
    margin: 0;
    font-weight: 400;
}

.rsvp-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.rsvp-fact-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.carousel-btn {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rsvp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.rsvp-dot.active {
    background-color: #8b4513;
    transform: scale(1.2);
}

.rsvp-dot:hover {
    background-color: #b8860b;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rsvp-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .rsvp-fun-facts {
        flex: none;
        position: static;
        order: -1;
        width: 100%;
        max-width: 400px;
    }
    
    .rsvp-fact-container {
        min-height: 150px;
    }
    
    .rsvp-fun-facts h3 {
        font-size: 20px;
    }
    
    .fact-icon {
        font-size: 28px;
    }
    
    .rsvp-fact-item .fact-text {
        font-size: 13px;
    }
    
    .rsvp-carousel-controls {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* AddEvent Calendar Button Styling */
.addeventatc {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.calendar-widget {
    margin-left: 15px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 20px;
}

/* Calendar widget in event details */
.detail-card .calendar-widget {
    margin: 10px 0;
    margin-left: 0;
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
}

.addeventatc:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 100%);
}

.addeventatc .addeventatc_dropdown {
    background: white;
    border: 1px solid #d4a574;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.addeventatc .addeventatc_dropdown a {
    color: #8b4513;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

.addeventatc .addeventatc_dropdown a:hover {
    background-color: #fef9e7;
    color: #5d4e37;
}

/* Success Page Calendar Section */
.success-calendar-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 231, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    text-align: center;
}

.success-calendar-section h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #8b4513;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.success-calendar-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #5d4e37;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.success-calendar-btn {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.success-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.success-calendar-btn .addeventatc_dropdown {
    background: white;
    border: 1px solid #32CD32;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.success-calendar-btn .addeventatc_dropdown a {
    color: #8b4513;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

.success-calendar-btn .addeventatc_dropdown a:hover {
    background-color: #f0fff0;
    color: #5d4e37;
}

/* Success Registry Section */
.success-registry-section {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.98) 100%);
    border-radius: 20px;
    border: 3px solid rgba(255, 182, 193, 0.6);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.success-registry-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffb6c1, #ffc0cb, #ffb6c1, #ffc0cb);
    border-radius: 20px;
    z-index: -1;
    animation: registryGlow 3s ease-in-out infinite;
}

@keyframes registryGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.success-registry-section h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #8b4513;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.success-registry-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #5d4e37;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.success-registry-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-registry-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #5d4e37;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    min-width: 220px;
    position: relative;
    z-index: 1;
}

.success-registry-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #5d4e37;
}

.success-registry-link.amazon:hover {
    border-color: #ff9900;
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}

.success-registry-link.target:hover {
    border-color: #cc0000;
    background: linear-gradient(135deg, #fff 0%, #fff0f0 100%);
}

.success-registry-link.babylist:hover {
    border-color: #ff69b4;
    background: linear-gradient(135deg, #fff 0%, #fff0f8 100%);
}

.registry-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.registry-info h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #8b4513;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.registry-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* Mobile Responsive for Success Registry */
@media (max-width: 768px) {
    .success-registry-links {
        flex-direction: column;
        align-items: center;
    }
    
    .success-registry-link {
        min-width: 250px;
        max-width: 300px;
    }
    
    .success-registry-section h4 {
        font-size: 20px;
    }
    
    .success-registry-container {
        flex-direction: column;
        align-items: center;
    }
    
    .registry-container {
        flex-direction: column;
        align-items: center;
    }
    
    .registry-item {
        min-width: 280px;
        max-width: 350px;
    }
}

/* Scrollbar styling for story content */
.story-content::-webkit-scrollbar {
    width: 6px;
}

.story-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.story-content::-webkit-scrollbar-thumb {
    background: #d4a574;
    border-radius: 3px;
}

.story-content::-webkit-scrollbar-thumb:hover {
    background: #b8860b;
}

/* Enhanced scrollbar for timeline */
.timeline-wrapper::-webkit-scrollbar {
    width: 6px;
}

.timeline-wrapper::-webkit-scrollbar-track {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 3px;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4a574, #ffd700);
    border-radius: 3px;
}

.timeline-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8860b, #d4a574);
}

/* Mobile responsiveness for postcard */
@media (max-width: 768px) {
    .postcard-overlay {
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
        overflow: hidden;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for better mobile support */
        width: 100vw;
        width: 100dvw; /* Dynamic viewport width for better mobile support */
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }
    
    .envelope {
        width: 90vw;
        max-width: 350px;
        height: 70vh;
        max-height: 280px;
        min-height: 250px;
    }
    
    .postcard {
        width: 100vw;
        width: 100dvw; /* Dynamic viewport width */
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height */
        max-width: none;
        max-height: none;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    
    .postcard-header {
        padding: 12px 15px 8px 15px;
        flex-shrink: 0;
    }
    
    .postcard-title {
        font-size: 24px;
    }
    
    .journey-content {
        padding: 15px;
        gap: 12px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .journey-item {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .journey-year {
        font-size: 14px;
        min-width: 45px;
        flex-shrink: 0;
        font-weight: 600;
    }
    
    .journey-icon {
        font-size: 18px;
        min-width: 20px;
        flex-shrink: 0;
    }
    
    .journey-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .journey-text h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .journey-text p {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Mobile Font Adjustments for Combined Years */
    .year-2020-2021 .journey-text h3,
    .year-2022-2024 .journey-text h3 {
        font-size: 17px;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    
    .year-2020-2021 .journey-text p,
    .year-2022-2024 .journey-text p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .year-2025 .journey-year {
        font-size: 16px;
    }
    
    .year-2025 .journey-text h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    
    .year-2025 .journey-text p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .year-2025 .journey-icon {
        font-size: 20px;
    }
    
    .year-2025.upcoming-event::before {
        font-size: 9px;
        padding: 3px 8px;
        top: 6px;
        right: 6px;
    }
    
    .postcard-footer {
        padding: 20px 15px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px;
    }
    
    .open-invitation-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
        min-width: 200px;
    }
    
    .wax-seal {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .to-line {
        font-size: 18px;
    }
    
    .from-line {
        font-size: 16px;
    }
    
    .click-hint {
        font-size: 14px;
    }
    
    .open-invitation-btn {
        padding: 15px 25px;
        font-size: 16px;
        min-height: 44px;
        min-width: 120px;
        touch-action: manipulation;
    }
    
    
    /* Scroll indicator for mobile */
    .scroll-indicator {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(139, 69, 19, 0.8);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-family: 'Open Sans', sans-serif;
        z-index: 999;
        display: none;
        animation: bounce 2s infinite;
    }
    
    .scroll-indicator.show {
        display: block;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #5d4e37;
    background: 
        linear-gradient(135deg, rgba(254, 247, 240, 0.8) 0%, rgba(253, 242, 233, 0.8) 50%, rgba(249, 230, 211, 0.8) 100%),
        url('winnie-pooh-decor.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(254, 249, 231, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

#main-navbar {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}

#main-navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.2);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0 2rem;
    white-space: nowrap;
}

.nav-logo:hover {
    color: #d2691e;
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    z-index: -1;
}

.nav-link {
    text-decoration: none;
    color: #8b4513;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.1);
}

.nav-link:hover {
    color: #d2691e;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #5d4e37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(254, 247, 240, 0.7) 0%, rgba(253, 242, 233, 0.7) 30%, rgba(249, 230, 211, 0.7) 60%, rgba(245, 213, 193, 0.7) 100%),
        url('winnie-pooh-decor.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.honeycomb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.honeycomb {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f5d5c1, #f9e6d3, #fdf2e9);
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    animation: float 6s ease-in-out infinite;
}

.honeycomb-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.honeycomb-2 {
    top: 25%;
    right: 5%;
    animation-delay: 1s;
}

.honeycomb-3 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.honeycomb-4 {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.honeycomb-5 {
    bottom: 35%;
    left: 25%;
    animation-delay: 4s;
}

.honeycomb-6 {
    bottom: 50%;
    left: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.bee {
    position: absolute;
    font-size: 2rem;
    animation: fly 8s ease-in-out infinite;
    z-index: 2;
}

.bee-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.bee-2 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.bee-3 {
    bottom: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes fly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(5deg); }
    50% { transform: translate(-10px, -25px) rotate(-3deg); }
    75% { transform: translate(-20px, -10px) rotate(3deg); }
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

/* Hero Title Section */
.hero-title-section {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
    white-space: nowrap;
}

.subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    color: #8b4513;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.4;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 1;
    visibility: visible;
    font-style: italic;
}

/* Honeycomb Decoration */
.honeycomb-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 1rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.honeycomb-hex {
    font-size: 1.5rem;
    color: #d4a574;
    animation: honeycombFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.honeycomb-hex:nth-child(1) {
    animation-delay: 0s;
}

.honeycomb-hex:nth-child(2) {
    animation-delay: 0.5s;
}

.honeycomb-hex:nth-child(4) {
    animation-delay: 1s;
}

.honeycomb-hex:nth-child(5) {
    animation-delay: 1.5s;
}

.honey-emoji {
    font-size: 2rem;
    animation: honeyDrip 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.honeycomb-decoration .story-icon {
    font-size: 2rem;
    animation: honeyDrip 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

/* Honeycomb Float Animation */
@keyframes honeycombFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 1;
    }
}

/* Baby Facts Carousel */
.baby-facts-carousel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 242, 233, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(245, 213, 193, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.carousel-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}


.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 231, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.carousel-slide {
    min-width: 100%;
    padding: 25px 30px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s ease;
    text-align: center;
}

.carousel-slide.active {
    display: flex;
    animation: slideIn 0.5s ease;
}

.fact-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: honeyDrip 3s ease-in-out infinite;
}

.fact-content {
    text-align: center;
    flex: 1;
}

.fact-content h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.fact-content p {
    font-size: 1rem;
    color: #5d4e37;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.carousel-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 100%);
}

.carousel-btn:active {
    transform: translateY(-1px) scale(0.95);
    transition: transform 0.1s ease;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4a574;
    transform: scale(1.2);
}

.dot:hover {
    background: #b8860b;
}

/* Carousel Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gender Prediction Poll */
.gender-prediction-poll {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.poll-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.poll-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.poll-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 231, 0.9) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.poll-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.6);
}

.poll-option.selected {
    border-color: #d4a574;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.option-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.option-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b4513;
    display: block;
    margin-bottom: 5px;
}

.option-subtext {
    font-size: 0.9rem;
    color: #5d4e37;
    font-style: italic;
    opacity: 0.8;
}

.boy-option:hover {
    border-color: #f1c40f;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.girl-option:hover {
    border-color: #e91e63;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(240, 98, 146, 0.1) 100%);
}

.surprise-option:hover {
    border-color: #d4a574;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

/* Hunny Story Section */
.hunny-story {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hunny-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(245, 213, 193, 0.3) 0%, rgba(249, 230, 211, 0.3) 100%);
    border-radius: 25px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin: 0 auto;
}

.hunny-icon {
    font-size: 1.8rem;
    animation: honeyDrip 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
    flex-shrink: 0;
}

.hunny-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #d4a574, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.event-details {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.address {
    font-size: 1rem;
    color: #5d4e37;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Baby Love Story Styling */
.baby-love-story {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 242, 233, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(245, 213, 193, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.story-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: honeyGlow 3s ease-in-out infinite;
}

@keyframes honeyGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.8));
    }
}

.story-text {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    line-height: 1.6;
    color: #5d4e37;
    margin: 0 0 20px 0;
}

.story-highlight {
    font-weight: 700;
    color: #8b4513;
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.story-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5d4e37;
    margin: 0 0 15px 0;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.story-description:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #8b4513;
}

/* Fun Facts Styling */
.fun-facts-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.fun-fact-container {
    text-align: center;
    padding: 10px 0;
    position: relative;
    min-height: 120px;
}

.fun-fact-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fun-fact-item.active {
    opacity: 1;
    transform: translateY(0);
}

.fact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.fact-text {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: #8b4513;
    line-height: 1.4;
    margin: 0;
}

.fun-fact-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.fun-fact-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-fact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.fun-fact-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8b4513;
    transform: scale(1.2);
}

.date, .location {
    font-size: 1.2rem;
    color: #5d4e37;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Calendar Link Styling */
.calendar-link {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.calendar-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ffd700);
}

/* Venue Highlight Styling */
.venue-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    color: #8b4513;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.1);
    display: inline-block;
    margin-right: 8px;
}

/* Map Address Link Styling */
.map-address-link {
    color: #d4a574;
    text-decoration: none;
    border: 2px solid #d4a574;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.map-address-link::before {
    content: "📍 ";
    font-size: 1.1em;
    margin-right: 5px;
}

.map-address-link::after {
    content: " →";
    font-size: 1.1em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.map-address-link:hover {
    color: #8b4513;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.map-address-link:hover::after {
    transform: translateX(3px);
}

.cta-button {
    background: linear-gradient(45deg, #f1c40f, #f39c12, #e67e22);
    color: #8b4513;
    border: none;
    padding: 18px 35px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
    animation: fadeInUp 1s ease-out 0.9s both, honeyGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.6);
    background: linear-gradient(45deg, #f39c12, #e67e22, #d35400);
    animation: honeyGlow 1s ease-in-out infinite, buttonBounce 0.6s ease-in-out;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
    animation: honeySqueeze 0.3s ease;
}

/* Honey Glow Animation */
@keyframes honeyGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(241, 196, 15, 0.7);
    }
}

/* Button Bounce Animation */
@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(-5px) scale(1.05);
    }
    50% {
        transform: translateY(-8px) scale(1.08);
    }
}

/* Honey Squeeze Animation */
@keyframes honeySqueeze {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(0.95);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: #8b4513;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.2);
    letter-spacing: 1px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    z-index: -1;
    opacity: 0.6;
}

.section-title::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: #5d4e37;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.event-datetime-display {
    text-align: center;
    margin-bottom: 2rem;
}

.event-datetime {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    display: inline-block;
    color: #8b4513;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* RSVP Section */
.rsvp-section {
    background: 
        linear-gradient(135deg, rgba(254, 247, 240, 0.9) 0%, rgba(253, 242, 233, 0.9) 100%),
        url('winnie-pooh-decor.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #5d4e37;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6d7c3;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d4a574;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: #d4a574;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #8b4513;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.rsvp-success {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 20px;
    margin-top: 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.rsvp-success h3 {
    color: #155724;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.rsvp-success p {
    color: #155724;
    font-size: 1.1rem;
}

/* Registry Section */
.registry-section {
    background: 
        linear-gradient(135deg, rgba(253, 242, 233, 0.9) 0%, rgba(249, 230, 211, 0.9) 100%),
        url('winnie-pooh-decor.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.registry-single {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.registry-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.success-registry-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.registry-item.centered {
    max-width: 400px;
    width: 100%;
}

.registry-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.registry-item:hover {
    transform: translateY(-10px);
}

.item-image {
    font-size: 3rem;
    margin-bottom: 20px;
}

.registry-item h3 {
    color: #8b4513;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.registry-item p {
    color: #5d4e37;
    margin-bottom: 20px;
    line-height: 1.6;
}

.registry-link {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #8b4513;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registry-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Details Section */
.details-section {
    background: 
        linear-gradient(135deg, rgba(249, 230, 211, 0.9) 0%, rgba(245, 213, 193, 0.9) 100%),
        url('winnie-pooh-decor.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.detail-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.4));
}

/* Icon Float Animation */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.detail-card h3 {
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    position: relative;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-card h3::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 1px;
    opacity: 0.7;
}

.detail-card:hover h3 {
    color: #d2691e;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.2);
}

/* Sparkle Animation */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.detail-card p {
    color: #5d4e37;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Dress Code Highlighting */
.dress-code-highlight {
    font-weight: 600;
    font-size: 1.1em;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 8px 12px;
    border-radius: 12px;
    border: 2px solid #f39c12;
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.2);
    display: inline-block;
    margin: 5px 0;
}

.boy-color {
    color: #f1c40f;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.girl-color {
    color: #e91e63;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-link {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #8b4513;
}

/* Footer */


.footer {
    background: linear-gradient(135deg, #8b4513 0%, #5d4e37 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(254, 249, 231, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .main-title {
        font-size: 3rem;
        white-space: normal;
    }
    
    .subtitle {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .poll-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .poll-option {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .poll-title {
        font-size: 1.5rem;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .carousel-slide {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .fact-icon {
        font-size: 2.5rem;
    }
    
    .fact-content h4 {
        font-size: 1.3rem;
    }
    
    .fact-content p {
        font-size: 0.9rem;
    }
    
    .honeycomb-hex {
        font-size: 1.2rem;
    }
    
    .honey-emoji {
        font-size: 1.8rem;
    }
    
    .honeycomb-decoration .story-icon {
        font-size: 1.8rem;
    }
    
    .hunny-quote {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }
    
    .hunny-text {
        font-size: 1.6rem;
        white-space: normal;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .rsvp-form {
        padding: 30px 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .registry-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .honeycomb {
        width: 40px;
        height: 40px;
    }
    
    .bee {
        font-size: 1.5rem;
    }
}

/* iPhone Pro Max and larger mobile screens */
@media (max-width: 430px) and (min-height: 900px) {
    .postcard-overlay {
        height: 100vh;
        height: 100dvh;
        width: 100vw;
        width: 100dvw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        overflow: hidden;
    }
    
    .postcard {
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* iPhone Pro and smaller screens */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    /* Fix story text overlapping on smaller screens */
    .journey-item {
        padding: 10px;
        margin-bottom: 12px;
        gap: 6px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .journey-year {
        font-size: 11px;
        min-width: 35px;
        flex-shrink: 0;
    }

    .journey-icon {
        font-size: 14px;
        min-width: 16px;
        flex-shrink: 0;
    }
    
    .journey-text {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 60px);
        overflow: hidden;
    }

    .journey-text h3 {
        font-size: 14px;
        line-height: 1.1;
        margin-bottom: 3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .journey-text p {
        font-size: 11px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }

    /* Specific adjustments for combined years on small screens */
    .year-2020-2021 .journey-text h3,
    .year-2022-2024 .journey-text h3 {
        font-size: 14px;
        line-height: 1.1;
        margin-bottom: 3px;
    }

    .year-2020-2021 .journey-text p,
    .year-2022-2024 .journey-text p {
        font-size: 11px;
        line-height: 1.2;
    }

    .year-2025 .journey-text h3 {
        font-size: 15px;
        line-height: 1.1;
        margin-bottom: 3px;
    }

    .year-2025 .journey-text p {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* Make 2025 block more obvious on mobile */
    .year-2025.upcoming-event {
        animation: pulse-mobile 2s infinite;
        border-width: 3px;
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    }
    
    .year-2025.upcoming-event::after {
        content: "👆 Tap to continue";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        background: #d4a574;
        color: white;
        padding: 4px 8px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 8px;
        white-space: nowrap;
        animation: bounce-mobile 1.5s infinite;
    }
    
    @keyframes pulse-mobile {
        0%, 100% { 
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.6);
            transform: scale(1.02);
        }
    }
    
    @keyframes bounce-mobile {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-3px); }
    }
    
    .subtitle {
        font-size: 1rem;
        white-space: normal;
    }
    
    .poll-title {
        font-size: 1.3rem;
    }
    
    .poll-option {
        padding: 15px 20px;
    }
    
    .option-icon {
        font-size: 2rem;
    }
    
    .option-text {
        font-size: 1.2rem;
    }
    
    .carousel-title {
        font-size: 1.3rem;
    }
    
    .carousel-slide {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .fact-icon {
        font-size: 2rem;
    }
    
    .fact-content h4 {
        font-size: 1.2rem;
    }
    
    .fact-content p {
        font-size: 0.85rem;
    }
    
    .honeycomb-hex {
        font-size: 1rem;
    }
    
    .honey-emoji {
        font-size: 1.5rem;
    }
    
    .honeycomb-decoration .story-icon {
        font-size: 1.5rem;
    }
    
    .hunny-quote {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .hunny-text {
        font-size: 1.4rem;
        white-space: normal;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .rsvp-form {
        padding: 20px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button:active {
    animation: pulse 0.3s ease;
}
