/* ==========================================================================
   Romantic Surprise Landing Page Design System & Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-primary: #ff4d6d;
    --color-primary-hover: #ff758f;
    --color-secondary: #c77dff;
    --color-accent: #ffb703;
    --color-bg-base: #fff5f7;
    --color-bg-gradient: linear-gradient(135deg, #fff0f3 0%, #f7d6e0 40%, #e2afff 80%, #ffd6ff 100%);
    --color-text-dark: #2b1e28;
    --color-text-muted: #6c5a69;
    --color-text-light: #ffffff;
    --color-gold: #ffb703;
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 12px 40px 0 rgba(255, 105, 135, 0.15);
    --glass-shadow-hover: 0 20px 50px 0 rgba(255, 77, 109, 0.25);
    --glass-blur: blur(18px);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-handwriting: 'Sacramento', cursive;

    /* Transitions & Easing */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing & Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-gradient);
    background-attachment: fixed;
    color: var(--color-text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Canvas Backgrounds */
#particle-canvas,
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

#confetti-canvas {
    z-index: 999;
}

/* Custom Glowing Cursor */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 15px var(--color-primary);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 77, 109, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, border-color 0.2s;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow-hover);
}

/* --------------------------------------------------------------------------
   3. Opening Intro Curtain Overlay
   -------------------------------------------------------------------------- */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2b101d 0%, #12050c 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-content {
    max-width: 500px;
    padding: 2rem;
}

.intro-heart-ring {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: pulse-heart 1.8s infinite ease-in-out;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ff9ebb, #ffccd5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--color-primary), #ff758f);
    border: none;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.5);
    transition: var(--transition-bounce);
}

.intro-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.7);
}

/* --------------------------------------------------------------------------
   4. Floating Audio Control Widget
   -------------------------------------------------------------------------- */
.audio-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.2);
}

.audio-btn {
    background: var(--color-primary);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}

.audio-btn:hover {
    transform: scale(1.1);
}

.sound-wave {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.audio-widget.playing .music-icon {
    display: none;
}

.audio-widget.playing .sound-wave {
    display: flex;
}

.sound-wave span {
    width: 3px;
    background: #ffffff;
    border-radius: 2px;
    animation: wave-bar 1s infinite ease-in-out alternate;
}

.sound-wave span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.sound-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.sound-wave span:nth-child(4) { height: 50%; animation-delay: 0.4s; }

.audio-info {
    display: flex;
    flex-direction: column;
}

.audio-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.audio-status {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: #ffffff !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.5);
}

/* --------------------------------------------------------------------------
   6. Main Page Layout & Sections
   -------------------------------------------------------------------------- */
.page-content {
    position: relative;
    z-index: 10;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 77, 109, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.heart-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.heart-divider .heart-icon {
    font-size: 1.2rem;
    animation: heartbeat 2s infinite;
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 8rem;
    text-align: center;
}

.hero-bg-blobs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 600px;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float-blob 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #ff758f;
    top: 10%;
    left: 15%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #c77dff;
    bottom: 10%;
    right: 15%;
    animation-delay: -3s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #ffb703;
    top: 40%;
    left: 40%;
    animation-delay: -6s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(255, 77, 109, 0.15);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.text-gradient {
    background: linear-gradient(135deg, #ff0054, #ff5400, #9e0059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff758f 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.4);
    overflow: hidden;
    transition: var(--transition-bounce);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.6);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.btn-primary:hover .btn-glow {
    transform: scale(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    opacity: 0.8;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   8. Main Centerpiece Spotlight Section (Image 6)
   -------------------------------------------------------------------------- */
.centerpiece-section {
    position: relative;
}

.centerpiece-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.centerpiece-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.35) 0%, rgba(200, 125, 255, 0.2) 50%, transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    animation: pulse-halo 4s infinite ease-in-out alternate;
    pointer-events: none;
}

.centerpiece-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    animation: float-centerpiece 6s infinite ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.centerpiece-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.animated-heart-border {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #ff4d6d, #ffb703, #c77dff) 1;
    border-radius: var(--radius-md);
    pointer-events: none;
    z-index: 2;
}

.centerpiece-image-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.centerpiece-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.centerpiece-card:hover .centerpiece-img {
    transform: scale(1.08);
}

.image-overlay-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    font-size: 1.2rem;
    color: var(--color-gold);
    z-index: 3;
    animation: twinkle 2s infinite ease-in-out alternate;
}

.frame-corner.top-left { top: 10px; left: 10px; }
.frame-corner.top-right { top: 10px; right: 10px; }
.frame-corner.bottom-left { bottom: 10px; left: 10px; }
.frame-corner.bottom-right { bottom: 10px; right: 10px; }

.centerpiece-caption {
    margin-top: 1.8rem;
}

.caption-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.caption-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.caption-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--color-primary), #ff758f);
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

/* --------------------------------------------------------------------------
   9. Polaroid Memory Gallery Section
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.polaroid-card {
    position: relative;
    padding: 1.2rem 1.2rem 1.8rem;
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: var(--transition-bounce);
}

.polaroid-card.tilt-1 { transform: rotate(-2deg); }
.polaroid-card.tilt-2 { transform: rotate(3deg); }
.polaroid-card.tilt-3 { transform: rotate(-3deg); }

.polaroid-card:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.03) !important;
    box-shadow: 0 25px 50px rgba(255, 77, 109, 0.25);
    z-index: 20;
}

.tape-pin {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.polaroid-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background: #f7f7f7;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.polaroid-card:hover .polaroid-img {
    transform: scale(1.08);
}

.polaroid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 30, 40, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.polaroid-card:hover .polaroid-overlay {
    opacity: 1;
}

.zoom-icon {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 77, 109, 0.85);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.polaroid-details {
    margin-top: 1.2rem;
    text-align: center;
}

.polaroid-date {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.polaroid-title {
    font-family: var(--font-handwriting);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   10. Our Story Timeline Section
   -------------------------------------------------------------------------- */
.story-section {
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 3rem;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 1.5rem;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.4);
    z-index: 2;
}

.timeline-item.left .timeline-dot { right: -22px; }
.timeline-item.right .timeline-dot { left: -22px; }

.timeline-content {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.timeline-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 0.8rem;
}

.timeline-text {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. Reasons Why You're Special Section
   -------------------------------------------------------------------------- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.reason-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-bounce);
}

.reason-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.reason-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.15), rgba(199, 125, 255, 0.15));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.15);
}

.reason-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 0.8rem;
}

.reason-desc {
    color: var(--color-text-muted);
    font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   12. Cute Quotes Carousel Section
   -------------------------------------------------------------------------- */
.quotes-section {
    max-width: 900px;
}

.quotes-container {
    position: relative;
    padding: 4rem 3rem 3rem;
    text-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 77, 109, 0.15);
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    pointer-events: none;
}

.quotes-wrapper {
    position: relative;
    min-height: 140px;
}

.quote-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-nav {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.carousel-nav:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 77, 109, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   13. Final Surprise Section & Grand Finale
   -------------------------------------------------------------------------- */
.surprise-card {
    padding: 5rem 3rem;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.surprise-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff4d6d, #c77dff);
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.surprise-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.surprise-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto 3rem;
}

.btn-surprise {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, #ff0054 0%, #ff5400 50%, #7000ff 100%);
    background-size: 200% 200%;
    animation: gradient-shift 5s infinite ease alternate;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 0, 84, 0.45);
    transition: var(--transition-bounce);
}

.btn-surprise:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 0, 84, 0.65);
}

/* --------------------------------------------------------------------------
   14. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 18, 0.85);
    backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.lightbox-close:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.lightbox-nav:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-img-wrapper {
    max-height: 550px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.lightbox-img-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: contain;
}

.lightbox-info {
    margin-top: 1.2rem;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-dark);
}

.lightbox-caption {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   15. Final Surprise Unboxing Love Letter Modal
   -------------------------------------------------------------------------- */
.letter-modal {
    position: fixed;
    inset: 0;
    z-index: 10005;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.letter-modal.active {
    opacity: 1;
    visibility: visible;
}

.letter-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 5, 12, 0.9);
    backdrop-filter: blur(16px);
}

.letter-paper {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 90%;
    padding: 3.5rem 3rem;
    background: #fffcf7;
    border: 2px solid #f3e5d8;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.letter-modal.active .letter-paper {
    transform: scale(1);
}

.letter-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.letter-close:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.wax-seal {
    width: 50px;
    height: 50px;
    background: #b80028;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(184, 0, 40, 0.4);
    margin-bottom: 1.5rem;
}

.letter-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #4a1e28;
    margin-bottom: 1.5rem;
}

.typewriter-container {
    min-height: 180px;
    margin-bottom: 2rem;
}

.typewriter-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    color: #3b2832;
    display: inline;
}

.typewriter-cursor {
    font-size: 1.4rem;
    color: var(--color-primary);
    animation: blink 0.8s infinite;
}

.letter-signoff {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: #5c3a47;
}

.letter-signature {
    font-family: var(--font-handwriting);
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.btn-replay {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), #ff758f);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.3);
    transition: var(--transition-bounce);
}

.btn-replay:hover {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   16. Footer & Scroll Reveals
   -------------------------------------------------------------------------- */
.main-footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
}

.footer-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.footer-subtext {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -50px) scale(1.15); }
}

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

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    40% { transform: scale(1); }
    60% { transform: scale(1.15); }
}

@keyframes pulse-halo {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.75; }
}

@keyframes float-centerpiece {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes wave-bar {
    0% { height: 20%; }
    100% { height: 100%; }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
    .nav-links { display: none; }
    
    .timeline-line { left: 20px; }
    .timeline-item { width: 100%; padding-left: 60px !important; padding-right: 0 !important; }
    .timeline-item.left, .timeline-item.right { left: 0; }
    .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 0; right: auto; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .btn-primary { padding: 1rem 2rem; font-size: 1.05rem; }
    .centerpiece-image-container { height: 300px; }
    .polaroid-img-wrapper { height: 220px; }
    .quote-text { font-size: 1.5rem; }
    .surprise-title { font-size: 2.2rem; }
    .audio-widget { bottom: 1.2rem; right: 1.2rem; padding: 0.5rem; }
    .audio-info { display: none; }
}
