/* ===== VARIABLES ===== */
:root {
    --pink-light: #fff0f5;
    --pink-soft: #ffb6c1;
    --pink-main: #ff69b4;
    --pink-deep: #ff1493;
    --pink-dark: #c71585;
    --purple-light: #e8d5f5;
    --purple-soft: #d8a8e8;
    --purple-main: #b56edc;
    --gold: #ffd700;
    --gold-soft: #fff3b0;
    --white: #ffffff;
    --cream: #fff9fc;
    --text-dark: #4a2040;
    --text-medium: #7a4070;
    --text-light: #a06090;
    --shadow-pink: rgba(255, 105, 180, 0.3);
    --shadow-purple: rgba(181, 110, 220, 0.2);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FLOATING BACKGROUND ELEMENTS ===== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-item {
    position: absolute;
    animation: floatAround 20s infinite ease-in-out;
    opacity: 0.06;
    font-size: 2rem;
    pointer-events: none;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-40px) rotate(8deg); }
}

/* ===== SPARKLE CURSOR ===== */
#sparkleContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.sparkle {
    position: absolute;
    pointer-events: none;
    font-size: 14px;
    animation: sparkleAnim 0.8s ease-out forwards;
}

@keyframes sparkleAnim {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0) translateY(-30px); }
}

/* ===== CONFETTI CANVAS ===== */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 2px solid var(--pink-soft);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.25);
}

.lang-active {
    color: var(--pink-deep);
}

.lang-inactive {
    color: var(--text-light);
    opacity: 0.5;
}

.lang-divider {
    color: var(--pink-soft);
    font-weight: 300;
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 14px;
    border-radius: 20px;
    background: white;
    border: 2px solid var(--pink-soft);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.music-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.25);
}

.music-toggle.playing {
    border-color: var(--pink-deep);
    background: var(--pink-light);
}

.music-toggle::before {
    content: '♪';
    font-size: 0.9rem;
}

.music-icon {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pink-deep);
    letter-spacing: 0.5px;
}

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

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

/* ===== CALENDAR BUTTON ===== */
.calendar-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pink-main), var(--purple-main));
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-pink);
}

/* ===== SCHEDULE CARDS ===== */
.schedule-section {
    padding: 80px 24px;
    background: var(--pink-light);
}

.schedule-grid {
    display: flex;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 8px 24px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.schedule-grid::before,
.schedule-grid::after {
    content: '';
    flex: 0 0 8px;
}

.schedule-grid::-webkit-scrollbar {
    display: none;
}

.schedule-card {
    flex: 0 0 160px;
    background: white;
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.15);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-pink);
}

.schedule-card-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--pink-main), var(--purple-main));
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.schedule-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.schedule-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.schedule-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

@media (min-width: 769px) {
    .schedule-grid {
        justify-content: center;
    }

    .schedule-card {
        flex: 0 0 170px;
    }
}

@media (max-width: 480px) {
    .schedule-card {
        flex: 0 0 140px;
        padding: 20px 14px;
    }

    .schedule-section {
        padding: 60px 16px;
    }
}

/* ===== LOVE NOTE ===== */
.love-note-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream), #fef6fa, var(--cream));
}

.love-note-card {
    max-width: 620px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.love-note-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-main), var(--purple-main), var(--pink-main));
}

.love-note-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink-main);
    font-weight: 700;
    margin-bottom: 16px;
    background: rgba(255, 105, 180, 0.08);
    padding: 6px 20px;
    border-radius: 20px;
}

.love-note-title {
    font-family: 'Sacramento', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--pink-deep);
    margin-bottom: 28px;
    line-height: 1.2;
}

.love-note-body p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.love-note-body p:last-child {
    margin-bottom: 0;
}

.love-note-signature {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    text-align: right;
}

.love-note-sign-names {
    font-family: 'Sacramento', cursive;
    font-size: 2rem;
    color: var(--pink-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.love-note-sign-aka {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .love-note-card {
        padding: 32px 24px;
    }

    .love-note-body p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .love-note-section {
        padding: 60px 16px;
    }

    .love-note-sign-names {
        font-size: 1.6rem;
    }
}

/* ===== MONTH BY MONTH TIMELINE ===== */
.monthly-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--pink-light), var(--cream));
}

.monthly-header {
    text-align: center;
    margin-bottom: 48px;
}

.monthly-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink-main);
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(255, 105, 180, 0.08);
    padding: 6px 20px;
    border-radius: 20px;
}

.monthly-title {
    font-family: 'Sacramento', cursive;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    color: var(--pink-deep);
}

.monthly-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
}

.monthly-grid::-webkit-scrollbar {
    display: none;
}

.monthly-grid .month-card:first-child {
    margin-left: 24px;
}

.monthly-grid .month-card:last-child {
    margin-right: 24px;
}

.month-card {
    flex: 0 0 200px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.15);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.month-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-pink);
}

.month-badge {
    background: linear-gradient(135deg, var(--pink-main), var(--purple-main));
    color: white;
    text-align: center;
    padding: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.month-photo {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.month-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.month-photo.missing {
    background: linear-gradient(135deg, rgba(255,182,193,0.15), rgba(232,213,245,0.15));
}

.missing-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
    padding: 0 4px;
}

.month-caption {
    padding: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
    border-top: 1px solid rgba(255, 182, 193, 0.1);
}

@media (max-width: 480px) {
    .month-card {
        flex: 0 0 170px;
    }

    .month-photo {
        height: 170px;
    }

    .monthly-section {
        padding: 60px 16px;
    }
}

/* ===== PHOTO LIGHTBOX (GALLERY) ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: pointer;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    max-width: 80%;
}

.lightbox img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
    opacity: 0.9;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 2.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(4px);
    line-height: 1;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 2px;
}

@media (max-width: 480px) {
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-image-wrap {
        max-width: 90%;
    }
}

/* Make month photos look tappable */
.month-photo img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.month-photo img:hover {
    transform: scale(1.03);
}

/* ===== ALL SECTIONS above floating ===== */
section, footer {
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(
        135deg,
        #fff0f5 0%,
        #ffe0f0 20%,
        #ffd6ec 40%,
        #f0d0ff 60%,
        #e8d5f5 80%,
        #fff0f5 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-zara.png') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-pretext {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 1px 8px rgba(255,240,245,0.8);
}

.hero-name {
    font-family: 'Sacramento', cursive;
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--pink-deep);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.2);
}


.hero-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.icon-bounce {
    font-size: 2.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 1px 8px rgba(255,240,245,0.8);
}

.hero-date {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 1.5px;
    opacity: 0.85;
    text-shadow: 0 1px 8px rgba(255,240,245,0.8);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-deep), var(--purple-main));
    color: white;
    text-decoration: none;
    padding: 18px 52px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--shadow-pink), 0 0 40px rgba(255,105,180,0.12);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px var(--shadow-pink), 0 0 60px rgba(255,105,180,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    animation: fadeInUp 2s ease infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease infinite;
}

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

/* ===== SECTION STYLES ===== */
.section-title {
    font-family: 'Sacramento', cursive;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    color: var(--pink-deep);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title.left-align {
    text-align: left;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-main), var(--purple-main));
    margin: 12px auto 0;
    border-radius: 2px;
}

.left-align::after {
    margin-left: 0;
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    background: linear-gradient(180deg, var(--pink-light), var(--cream));
    padding: 80px 24px;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    min-width: 120px;
    box-shadow: 0 8px 30px var(--shadow-pink), 0 0 0 1px rgba(255,182,193,0.2);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255,182,193,0.3);
    backdrop-filter: blur(10px);
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px var(--shadow-pink);
}

.countdown-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--pink-deep);
    line-height: 1;
    background: linear-gradient(135deg, var(--pink-deep), var(--purple-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.countdown-separator {
    font-size: 1.8rem;
    color: var(--pink-soft);
    font-weight: 300;
    opacity: 0.5;
    margin-top: -8px;
}

/* ===== DETAILS ===== */
.details-section {
    padding: 80px 24px;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.detail-card {
    background: white;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255,182,193,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-main), var(--purple-main), var(--gold));
}

.detail-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,105,180,0.03), rgba(181,110,220,0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px var(--shadow-pink);
}

.detail-card:hover::after {
    opacity: 1;
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.detail-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    color: var(--pink-deep);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.detail-main {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.detail-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream), var(--pink-light));
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.about-frame {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, var(--pink-soft), var(--purple-light));
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 4px solid white;
    box-shadow: 0 10px 50px var(--shadow-pink), 0 0 0 8px rgba(255,240,245,0.6);
    position: relative;
    overflow: hidden;
}


.photo-placeholder span {
    font-size: 4rem;
}

.photo-placeholder p {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pink-main), var(--purple-main));
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 30px var(--shadow-pink);
    position: relative;
    overflow: hidden;
}

.age-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.age-number {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.age-text {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    position: relative;
}

/* ===== DAD'S RULES (ROYAL DECREE) ===== */
.dad-rules-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream) 0%, #fef6fa 50%, var(--cream) 100%);
}

.dad-rules-header {
    text-align: center;
    margin-bottom: 52px;
}

.dad-rules-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink-main);
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(255, 105, 180, 0.08);
    padding: 6px 20px;
    border-radius: 20px;
}

.dad-rules-title {
    font-family: 'Sacramento', cursive;
    font-size: clamp(2.4rem, 7vw, 3.5rem);
    color: var(--pink-deep);
    margin-bottom: 20px;
    line-height: 1.2;
}

.dad-rules-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.dad-rules-list {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Vertical connecting line */
.dad-rules-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--pink-soft), var(--pink-soft), transparent);
}

.dad-rule {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    position: relative;
    transition: all 0.3s ease;
}

.dad-rule:not(:last-child) {
    border-bottom: 1px solid rgba(255, 182, 193, 0.15);
}

.dad-rule:hover .dad-rule-number {
    background: var(--pink-deep);
    color: white;
    transform: scale(1.1);
}

.dad-rule-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--pink-soft);
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
    color: var(--pink-deep);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.1);
}

.dad-rule-body {
    flex: 1;
    padding-top: 4px;
}

.dad-rule-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dad-rule-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-weight: 400;
}

.dad-rule-text strong {
    color: var(--pink-deep);
    font-weight: 600;
}

/* Signature */
.dad-signature {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
}

.dad-signature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.dad-signature-name {
    font-family: 'Sacramento', cursive;
    font-size: 2.2rem;
    color: var(--pink-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.dad-signature-aka {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== DAD JOKES ===== */
.dad-jokes-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream), #fef6fa, var(--cream));
}

.dad-jokes-header {
    text-align: center;
    margin-bottom: 48px;
}

.dad-jokes-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink-main);
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(255, 105, 180, 0.08);
    padding: 6px 20px;
    border-radius: 20px;
}

.dad-jokes-title {
    font-family: 'Sacramento', cursive;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    color: var(--pink-deep);
    margin-bottom: 16px;
}

.dad-jokes-intro {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.dad-jokes-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
    scroll-padding: 0 24px;
}

.dad-jokes-grid .joke-card:first-child {
    margin-left: 24px;
}

.dad-jokes-grid .joke-card:last-child {
    margin-right: 24px;
}

.dad-jokes-grid::-webkit-scrollbar {
    display: none;
}

.joke-card {
    perspective: 800px;
    height: 180px;
    flex: 0 0 260px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    scroll-snap-align: center;
}

.joke-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.joke-card.flipped .joke-inner {
    transform: rotateY(180deg);
}

.joke-front, .joke-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.joke-front {
    background: white;
    border: 1px solid rgba(255, 182, 193, 0.2);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.08);
}

.joke-front:hover {
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.15);
}

.joke-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.joke-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
}

.joke-back {
    background: linear-gradient(135deg, var(--pink-deep), var(--purple-main));
    transform: rotateY(180deg);
    box-shadow: 0 8px 30px var(--shadow-pink);
}

.joke-a {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    line-height: 1.6;
}

/* Scroll fade indicators */
.scroll-fade-container {
    position: relative;
}

.monthly-grid,
.dad-jokes-grid,
.schedule-grid {
    position: relative;
}

.monthly-section .container,
.dad-jokes-section .container,
.schedule-section .container {
    position: relative;
}

.monthly-section .container::after,
.schedule-section .container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--pink-light), transparent);
    pointer-events: none;
    z-index: 3;
}

.dad-jokes-section .container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--cream), transparent);
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 480px) {
    .joke-card {
        flex: 0 0 230px;
        height: 170px;
    }

    .joke-q {
        font-size: 0.95rem;
    }

    .joke-a {
        font-size: 0.95rem;
    }

    .dad-jokes-section {
        padding: 60px 16px;
    }
}

/* ===== RSVP ===== */
.rsvp-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--pink-light), var(--cream));
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: -32px;
    margin-bottom: 40px;
}

.rsvp-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-button {
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.2rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* ===== FAQ ===== */
.faq-section {
    padding: 80px 24px;
    background: var(--pink-light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.06);
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.12);
    border-color: rgba(255,182,193,0.4);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--pink-deep);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--pink-main);
    transition: transform 0.3s ease;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink-light);
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--pink-main);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===== FOOTER ===== */
.footer {
    padding: 52px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-soft), transparent);
}


.footer-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: var(--pink-deep);
    margin-bottom: 8px;
}

.footer-parents {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-sponsor {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
    opacity: 0.8;
}

.sponsor-link {
    color: var(--pink-deep);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.sponsor-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

.animate-float {
    animation: floatText 3s ease-in-out infinite;
}

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

.animate-pop {
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    50% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Scroll animations */
.animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card animations */
.detail-card:nth-child(1) .animate-card,
.details-grid .detail-card:nth-child(1) { transition-delay: 0s; }
.detail-card:nth-child(2) .animate-card,
.details-grid .detail-card:nth-child(2) { transition-delay: 0.1s; }
.detail-card:nth-child(3) .animate-card,
.details-grid .detail-card:nth-child(3) { transition-delay: 0.2s; }
.detail-card:nth-child(4) .animate-card,
.details-grid .detail-card:nth-child(4) { transition-delay: 0.3s; }

.dad-rule:nth-child(1) { transition-delay: 0s; }
.dad-rule:nth-child(2) { transition-delay: 0.07s; }
.dad-rule:nth-child(3) { transition-delay: 0.14s; }
.dad-rule:nth-child(4) { transition-delay: 0.21s; }
.dad-rule:nth-child(5) { transition-delay: 0.28s; }
.dad-rule:nth-child(6) { transition-delay: 0.35s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-name {
        font-size: 3.5rem;
    }

    .hero-icons {
        gap: 16px;
    }

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

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 75px;
        padding: 18px 14px;
    }

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

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

    .details-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 16px;
    }

    .detail-card {
        padding: 28px 20px;
    }

    .detail-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title.left-align {
        text-align: center;
    }

    .left-align::after {
        margin: 12px auto 0;
    }

    .photo-placeholder {
        width: 220px;
        height: 260px;
    }

    .dad-rules-list::before {
        left: 20px;
    }

    .dad-rule {
        gap: 18px;
        padding: 22px 0;
    }

    .dad-rule-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .dad-rules-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero-pretext {
        font-size: 1rem;
    }

    .badge-text {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 1rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 14px 10px;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .detail-card {
        padding: 28px 20px;
    }

    .dad-rule {
        padding: 18px 0;
        gap: 14px;
    }

    .dad-rule-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .dad-rules-list::before {
        left: 17px;
    }

    .dad-rule-heading {
        font-size: 0.95rem;
    }

    .dad-rule-text {
        font-size: 0.9rem;
    }

    .dad-rules-intro {
        font-size: 0.95rem;
    }

    .dad-signature-name {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 18px;
    }

    .about-description {
        font-size: 1rem;
    }

    .countdown-section,
    .details-section,
    .about-section,
    .dad-rules-section,
    .rsvp-section,
    .faq-section {
        padding: 60px 16px;
    }
}

/* ===== FLOATING RSVP BUTTON (MOBILE) ===== */
.floating-rsvp {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: linear-gradient(135deg, var(--pink-deep), var(--purple-main));
    color: white;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.4), 0 0 60px rgba(255, 105, 180, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.floating-rsvp.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.floating-rsvp:active {
    transform: translateX(-50%) scale(0.95);
}

/* ===== FLOATING BALLOONS ===== */
.balloon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.balloon {
    position: absolute;
    bottom: -160px;
    pointer-events: none;
    animation: balloonFloat linear forwards;
    opacity: 0;
}

.balloon-body {
    width: var(--bw, 44px);
    height: var(--bh, 56px);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    position: relative;
    filter: blur(0.3px);
    box-shadow: inset -8px -4px 12px rgba(255,255,255,0.35), inset 4px 2px 8px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.08);
}

/* Balloon shine */
.balloon-body::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 22%;
    width: 30%;
    height: 24%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-20deg);
}

/* Balloon knot */
.balloon-body::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: inherit;
    filter: brightness(0.85);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.balloon-string {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: var(--string-h, 60px);
    background: linear-gradient(180deg, rgba(200,180,190,0.5), rgba(200,180,190,0.15));
}

/* Gentle sway while floating */
@keyframes balloonFloat {
    0% {
        bottom: -160px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    5% {
        opacity: 0.85;
    }
    25% {
        transform: translateX(var(--sway1, 20px)) rotate(3deg);
    }
    50% {
        transform: translateX(var(--sway2, -15px)) rotate(-2deg);
    }
    75% {
        transform: translateX(var(--sway3, 10px)) rotate(2deg);
    }
    92% {
        opacity: 0.85;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(var(--sway4, -8px)) rotate(-1deg);
    }
}

/* Chrome/metallic balloon variant */
.balloon-chrome .balloon-body {
    box-shadow: inset -10px -6px 16px rgba(255,255,255,0.5), inset 6px 4px 10px rgba(0,0,0,0.1), 0 4px 24px rgba(0,0,0,0.1);
}

.balloon-chrome .balloon-body::before {
    width: 35%;
    height: 28%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.8) 0%, transparent 60%);
}

@media (max-width: 768px) {
    .balloon-body {
        --bw: 32px;
        --bh: 42px;
    }
}

/* ===== FLYING UNICORN ===== */
.flying-unicorn {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    top: -80px;
    left: -80px;
    opacity: 0;
}

.unicorn-body {
    font-size: 3rem;
    animation: unicornBob 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(255,105,180,0.4));
}

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

.flying-unicorn.flying {
    opacity: 1;
    animation: flyAcross 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes flyAcross {
    0% {
        left: -100px;
        top: 30%;
        opacity: 0;
        transform: scale(0.5);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        top: 15%;
    }
    50% {
        top: 40%;
    }
    75% {
        top: 20%;
    }
    95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: 110vw;
        top: 30%;
        opacity: 0;
        transform: scale(0.5);
    }
}

.unicorn-trail {
    position: absolute;
    top: 50%;
    right: 100%;
    pointer-events: none;
}

.trail-sparkle {
    position: absolute;
    font-size: 0.8rem;
    animation: trailFade 1s ease-out forwards;
    pointer-events: none;
}

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

/* ===== SPARKLE BURST (tap effect) ===== */
#sparkleBurst {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.burst-particle {
    position: absolute;
    font-size: 1rem;
    pointer-events: none;
    animation: burstOut 0.7s ease-out forwards;
}

@keyframes burstOut {
    0% { opacity: 1; transform: scale(1) translate(0, 0); }
    100% { opacity: 0; transform: scale(0.3) translate(var(--tx), var(--ty)); }
}

/* ===== MAGIC WAND (tap to sparkle hint) ===== */
@media (max-width: 768px) {
    .flying-unicorn.flying {
        animation: flyAcrossMobile 6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    }

    @keyframes flyAcrossMobile {
        0% {
            left: -60px;
            top: 25%;
            opacity: 0;
            transform: scale(0.6);
        }
        5% {
            opacity: 1;
            transform: scale(0.8);
        }
        25% { top: 15%; }
        50% { top: 35%; }
        75% { top: 20%; }
        95% { opacity: 1; }
        100% {
            left: 110vw;
            top: 25%;
            opacity: 0;
            transform: scale(0.4);
        }
    }

    .unicorn-body {
        font-size: 2.2rem;
    }
}
