/* ========================================
   1ST WEDDING ANNIVERSARY - MODERN PASTEL THEME
   ======================================== */

/* CSS Variables - Pastel Color Palette */
:root {
    --pastel-pink: #FFB6C1;
    --pastel-peach: #FFDAB9;
    --pastel-lavender: #E6E6FA;
    --pastel-mint: #B2F2D1;
    --pastel-blue: #B8D4E8;
    --pastel-yellow: #FFF9B0;
    --pastel-coral: #FFB4A2;
    --pastel-lilac: #DCD0FF;

    --bg-cream: #FFF9F5;
    --bg-soft: #FDF6F0;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --text-light: #B2BEC3;

    --accent-rose: #E84A5F;
    --accent-coral: #FF847C;

    --font-display: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Poppins', sans-serif;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ========================================
   DRIBBBLE-STYLE CELEBRATION LANDING
   ======================================== */
.celebration-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.celebration-content {
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 120px;
}

/* Modern Hero Title */
.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-line {
    display: block;
    color: white;
    opacity: 0;
    line-height: 1.1;
}

.hero-line-1 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-line-big {
    font-family: var(--font-display);
    font-size: clamp(7rem, 28vw, 16rem);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 0.9;
    margin: 0.1em 0;
    text-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 80px rgba(255, 255, 255, 0.2);
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
               heroFloat 4s ease-in-out 1.3s infinite;
}

.hero-line-big sup {
    font-size: 0.3em;
    font-weight: 500;
    vertical-align: super;
    letter-spacing: 0;
    margin-left: -0.05em;
}

.hero-line-3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

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

/* Subtitle line with dashes */
.hero-subtitle-line {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 0.6s ease 1.2s forwards;
}

.hero-dash {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 5px;
    text-transform: uppercase;
}

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

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

/* Floating Hearts */
.celebration-hearts {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    height: 60px;
}

.heart {
    font-size: 2rem;
    opacity: 0;
    animation: heartFloat 2s ease-in-out infinite;
}

.h1 { animation-delay: 1.8s; }
.h2 { animation-delay: 2s; }
.h3 { animation-delay: 2.2s; }
.h4 { animation-delay: 2.4s; }
.h5 { animation-delay: 2.6s; }

@keyframes heartFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
}

/* Scroll Down Button */
.scroll-down-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.5s ease 3s forwards;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) translateY(-5px);
}

/* Hide scroll button when scrolled past celebration hero */
.scroll-down-btn.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.scroll-down-btn svg {
    width: 20px;
    height: 20px;
    animation: bounceArrow 1.5s ease-in-out infinite;
}

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

/* Confetti Container */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -20px;
    animation: confettiDrop 3s ease-in-out forwards;
}

@keyframes confettiDrop {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive for Celebration */
@media (max-width: 768px) {
    .hero-line-1 {
        letter-spacing: 6px;
    }
    .hero-line-big {
        letter-spacing: -2px;
    }
    .hero-line-3 {
        letter-spacing: 2px;
    }
    .hero-tagline {
        letter-spacing: 3px;
    }
    .hero-dash {
        width: 25px;
    }
    .scroll-down-btn {
        bottom: 30px;
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #f5f0ff 0%, #fff0f5 50%, #fff5f0 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Modern Gradient Background - Vibrant Style */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(240, 147, 251, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Large Background "7" Number - Vibrant Style */
.bg-number {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(300px, 55vw, 600px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(240, 147, 251, 0.25) 50%, rgba(245, 87, 108, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    filter: drop-shadow(0 0 60px rgba(240, 147, 251, 0.3));
    animation: numberFloat 10s ease-in-out infinite;
}

@keyframes numberFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-2deg) scale(1);
    }
    50% {
        transform: translate(-50%, -52%) rotate(2deg) scale(1.02);
    }
}

/* Decorative Blob Shapes */
.blob-decoration {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: 10%;
    left: -50px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 50%;
    right: 10%;
    animation: blobFloat 12s ease-in-out infinite 2s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Hearts */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 20px;
    opacity: 0.7;
    animation: floatUp 10s ease-in infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
}

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

.hero-content {
    max-width: 900px;
    position: relative;
}

/* Modern Illustration Container */
.illustration-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.couple-illustration {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
}

/* Rings Icon - Modern Style */
.rings-icon {
    margin-bottom: 1rem;
}

.rings {
    width: 80px;
    height: 50px;
}

.ring {
    fill: none;
    stroke-width: 2.5;
}

.ring-left {
    stroke: #667eea;
    animation: ringPulse 2s ease-in-out infinite;
}

.ring-right {
    stroke: #f093fb;
    animation: ringPulse 2s ease-in-out infinite 0.3s;
}

@keyframes ringPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(240, 147, 251, 0.8));
    }
}

/* Typography - Vibrant Modern */
.pre-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.subtitle {
    font-family: var(--font-script);
    font-size: 1.75rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Date Display - Vibrant Glassmorphism Style */
.date-display {
    margin: 2.5rem 0;
    perspective: 1000px;
}

.date-box {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(240, 147, 251, 0.15) 50%, rgba(245, 87, 108, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 2px solid rgba(240, 147, 251, 0.3);
    box-shadow:
        0 8px 32px rgba(102, 126, 234, 0.2),
        0 4px 16px rgba(240, 147, 251, 0.15),
        inset 0 0 32px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: floatGently 4s ease-in-out infinite;
}

.date-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

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

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

.date-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.date-text {
    text-align: left;
}

.date-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.date-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Counter Heading */
.counter-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Counter Description */
.counter-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Counter - Modern Neumorphic Cards */
.counter {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    padding: 1.75rem 1.5rem;
    min-width: 130px;
    background: linear-gradient(145deg, #ffffff, #f5f0eb);
    border-radius: 28px;
    box-shadow:
        8px 8px 20px rgba(0, 0, 0, 0.08),
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(90deg, #667eea, #f093fb);
}

.counter-item:nth-child(1)::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.counter-item:nth-child(2)::before {
    background: linear-gradient(90deg, #f093fb, #ec38bc);
}

.counter-item:nth-child(3)::before {
    background: linear-gradient(90deg, #f5576c, #f093fb);
}

.counter-item:nth-child(4)::before {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.counter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 107%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.counter-item:nth-child(2)::after {
    background: radial-gradient(circle at 30% 107%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
}

.counter-item:nth-child(3)::after {
    background: radial-gradient(circle at 30% 107%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
}

.counter-item:nth-child(4)::after {
    background: radial-gradient(circle at 30% 107%, rgba(67, 233, 123, 0.15) 0%, transparent 50%);
}

.counter-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        12px 12px 30px rgba(0, 0, 0, 0.1),
        -12px -12px 30px rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.counter-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.counter-item:nth-child(1) .counter-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-item:nth-child(2) .counter-number {
    background: linear-gradient(135deg, #f093fb 0%, #ec38bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-item:nth-child(3) .counter-number {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-item:nth-child(4) .counter-number {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
}

/* Reasons I Love You Card */
.reasons-card {
    max-width: 650px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reasons-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
}

.reasons-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.reasons-prompt {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reason-reveal {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.08) 100%);
    border-radius: 20px;
    border: 1px dashed rgba(240, 147, 251, 0.3);
}

.reason-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.reason-text.animate {
    animation: reasonPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn-reason {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    color: white;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-reason:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Buttons - Modern Style */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.5);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid rgba(240, 147, 251, 0.5);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

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

/* Timeline Section - Vibrant */
.timeline-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.08) 30%, rgba(240, 147, 251, 0.08) 70%, transparent 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.section-title span {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #f093fb, #f5576c, #f093fb, #667eea);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.6s ease forwards;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border: 3px solid #667eea;
}

.timeline-item:nth-child(2) .timeline-icon { border-color: #9b6dd9; }
.timeline-item:nth-child(3) .timeline-icon { border-color: #f093fb; }
.timeline-item:nth-child(4) .timeline-icon { border-color: #ec38bc; }
.timeline-item:nth-child(5) .timeline-icon { border-color: #f5576c; }

.timeline-content {
    flex: 1;
    padding: 1.5rem 2rem;
    margin: 0 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 300px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Traditional Wisdom Section */
.wisdom-section {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.wisdom-card {
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 3.5rem 3rem;
    background: white;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(102, 126, 234, 0.12),
        0 8px 24px rgba(240, 147, 251, 0.08);
    position: relative;
    overflow: hidden;
}

.wisdom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
}

.butterfly-heart-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.butterfly-heart {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(240, 147, 251, 0.25));
}

.wisdom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wisdom-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.wisdom-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.wisdom-title span {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wisdom-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb, #f5576c);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.wisdom-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.wisdom-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.wisdom-decoration {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.75rem;
    opacity: 0.7;
}

.wisdom-decoration span {
    transition: transform 0.3s ease;
}

.wisdom-decoration span:hover {
    transform: scale(1.3) translateY(-5px);
}

@media (max-width: 768px) {
    .wisdom-card {
        padding: 2.5rem 1.5rem;
    }

    .wisdom-text {
        font-size: 0.95rem;
    }
}

/* Modal - Modern Style */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.25);
    animation: modalSlideIn 0.4s ease;
    border: 2px solid rgba(240, 147, 251, 0.4);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: rotate(90deg);
}

/* Video Modal */
.video-modal-content {
    background: #000;
    border-radius: 16px;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(240, 147, 251, 0.4);
    overflow: hidden;
}

.video-modal-content video {
    width: 100%;
    max-height: 85vh;
    border-radius: 14px;
    outline: none;
}

.video-modal-content .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
}

/* Clickable Timeline Item */
.timeline-clickable {
    cursor: pointer;
}

.timeline-clickable:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.timeline-play-hint {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #f093fb;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.timeline-clickable:hover .timeline-play-hint {
    opacity: 1;
}

/* Love Letter - Modern Style */
.letter-paper {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF5F5 100%);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 20px;
    font-family: var(--font-body);
    line-height: 1.9;
    position: relative;
    border: 1px dashed var(--pastel-pink);
}

.letter-paper h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.letter-paper p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.letter-signature {
    font-family: var(--font-script);
    font-size: 1.75rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    margin-top: 2rem;
}

/* Footer - Vibrant */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
    font-family: var(--font-body);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-year {
    font-family: var(--font-script);
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

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

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

.animate-fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease 0.2s forwards;
}

.animate-expand {
    animation: expand 1s ease 0.5s forwards;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

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

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

@keyframes expand {
    to {
        width: 200px;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .bg-number {
        font-size: 250px;
        color: rgba(255, 182, 193, 0.25);
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .date-box {
        padding: 1rem 1.5rem;
        gap: 1rem;
        border-radius: 60px;
    }

    .date-icon {
        font-size: 1.5rem;
    }

    .date-value {
        font-size: 1.1rem;
    }

    .counter {
        gap: 0.75rem;
    }

    .counter-item {
        padding: 1.25rem 1rem;
        min-width: 100px;
        border-radius: 20px;
    }

    .counter-icon {
        font-size: 1.2rem;
    }

    .counter-number {
        font-size: 1.75rem;
    }

    .counter-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .timeline::before {
        left: 35px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 0;
    }

    .timeline-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
        max-width: none;
        padding: 1.25rem;
    }


    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .love-message {
        padding: 2rem 1.5rem;
    }

    .love-message::before {
        font-size: 4rem;
        top: 5px;
        left: 15px;
    }

    .blob-1, .blob-2, .blob-3 {
        display: none;
    }

    .couple-illustration {
        width: 220px;
        height: 220px;
    }
}
