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

:root {
    --primary: #f4c4c4;
    --primary-dark: #e89b9b;
    --primary-light: #fff0f0;
    --accent: #ffd4a3;
    --accent-dark: #ffb870;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: rgba(244, 196, 196, 0.3);
    --shadow-strong: rgba(244, 196, 196, 0.5);
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--primary-light);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('001-blau.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 240, 240, 0.2) 0%, 
        rgba(255, 240, 240, 0.6) 50%, 
        rgba(255, 240, 240, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 50px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 1px rgba(255, 255, 255, 0.8) inset;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatIn 1.2s ease-out;
}

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

.baby-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.baby-shoes-img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

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

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 20px auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.host-names {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-dark);
    font-weight: 600;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollPrompt 2s ease-in-out infinite;
}

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

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    margin-bottom: 8px;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* PAGES */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* COUNTDOWN SECTION */
.countdown-section {
    background: var(--white);
}

.countdown-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.countdown-item {
    background: var(--white);
    padding: 15px 12px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid var(--primary-light);
    min-width: 70px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.countdown-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    padding: 0 50px;
}

/* DETAILS SECTION */
.details-section {
    background: var(--white);
}

.details-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.detail-item {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.detail-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--shadow);
}

.detail-emoji {
    font-size: 1.5rem;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* WISHLIST SECTION */
.wishlist-section {
    background: var(--white);
}

.wishlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px;
}

.wish-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.wish-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.wish-text {
    margin-bottom: 25px;
}

.wish-text p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.wish-quote {
    position: relative;
    margin: 25px 0;
    padding: 20px;
    background: var(--primary-light);
    border-radius: 15px;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--primary);
    line-height: 0;
    opacity: 0.4;
}

.quote-mark.closing {
    display: block;
    text-align: right;
    margin-top: 10px;
}

.quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 15px 0;
}

.wish-hearts {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* RSVP SECTION */
.rsvp-section {
    background: var(--white);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-strong);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.radio-main-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 18px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-box {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.radio-box:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

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

.radio-checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-right: 80px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-box input[type="radio"]:checked + .radio-checkmark {
    background: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow);
}

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

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.radio-emoji {
    font-size: 1.3rem;
}

.radio-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--shadow-strong);
}

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

.btn-icon {
    font-size: 1.3rem;
}

/* NAVIGATION HEARTS */
.page-nav {
    position: fixed;
    right: calc(50% - 450px + 20px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-heart {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    color: var(--primary-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-heart svg {
    width: 100%;
    height: 100%;
}

.nav-heart:hover {
    transform: scale(1.2);
}

.nav-heart.active {
    color: var(--primary-dark);
    transform: scale(1.3);
    filter: drop-shadow(0 4px 8px var(--shadow-strong));
}

/* MUSIC BUTTON */
.music-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px var(--shadow-strong);
}

.music-icon {
    width: 30px;
    height: 30px;
    stroke: white;
}

.music-btn.playing .music-icon {
    animation: musicPulse 1s ease-in-out infinite;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .glass-box {
        padding: 40px 30px;
    }

    .container {
        max-width: 100%;
        padding: 0 70px;
    }

    .countdown-display {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .detail-row {
        grid-template-columns: 1fr;
    }

    .wishlist-content {
        padding: 40px 25px;
    }

    .rsvp-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-nav {
        right: 40px;
    }

    .nav-heart {
        width: 30px;
        height: 30px;
    }

    .music-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-indicator {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 50px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .page-nav {
        right: 30px;
    }

    .nav-heart {
        width: 25px;
        height: 25px;
    }
}
