```css
/* =========================================
   BASIC RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #3d2632;
    background: #fff8fc;
    overflow-x: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}


/* =========================================
   LOADER
========================================= */

#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffedf7, #fff8fc, #ffe4f2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: 1s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-heart {
    font-size: 75px;
    animation: heartbeat 1.2s infinite;
}

#loader h2 {
    margin-top: 20px;
    font-family: "Dancing Script", cursive;
    font-size: 35px;
    color: #d43b78;
}

#loader p {
    margin-top: 8px;
    color: #8f6477;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 248, 252, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 120, 170, 0.15);
    z-index: 1000;
}

.logo {
    font-family: "Dancing Script", cursive;
    font-size: 32px;
    font-weight: 700;
    color: #b82f68;
}

.logo span {
    font-size: 22px;
}

.navbar nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.navbar nav a {
    color: #603c4c;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #e13d83;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: #c73470;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 113, 174, 0.35), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(216, 85, 147, 0.25), transparent 35%),
        linear-gradient(135deg, #ffe6f2, #fff7fb, #ffddeb);
}

.hero::before {
    content: "♡";
    position: absolute;
    font-size: 450px;
    color: rgba(255, 255, 255, 0.25);
    right: -80px;
    bottom: -160px;
    font-family: Georgia, serif;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(255,230,244,0.2)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 100px 25px 40px;
}

.sparkle {
    font-size: 30px;
    margin-bottom: 25px;
    animation: floating 3s ease-in-out infinite;
}

.small-heading {
    color: #c63b73;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero h1 {
    margin-top: 18px;
    font-family: "Great Vibes", cursive;
    font-size: clamp(60px, 9vw, 110px);
    font-weight: 400;
    line-height: 1;
    color: #54283c;
}

.hero h1 span {
    display: block;
    color: #d53578;
    margin-top: 15px;
}

.hero-text {
    max-width: 650px;
    margin: 28px auto;
    line-height: 1.8;
    color: #785568;
    font-size: 16px;
}

.main-btn {
    border: none;
    padding: 16px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ef4b91, #c72f70);
    color: white;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(200, 47, 112, 0.25);
    transition: 0.3s;
}

.main-btn:hover {
    transform: translateY(-4px) scale(1.03);
}

.scroll-text {
    margin-top: 45px;
    font-size: 12px;
    color: #9a7082;
    animation: floating 2.5s infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================
   GENERAL SECTION
========================================= */

.section {
    padding: 110px 8%;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 65px;
}

.section-heading span,
.section-small {
    color: #d13d78;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-heading h2 {
    margin: 12px 0;
    font-family: "Dancing Script", cursive;
    font-size: clamp(42px, 6vw, 65px);
    color: #512a3d;
}

.section-heading p {
    color: #866576;
    line-height: 1.8;
}


/* =========================================
   TIMELINE
========================================= */

.timeline-section {
    background: #fffafd;
}

.timeline {
    max-width: 950px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#f39ac1, #d94480);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 20px 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ee80ad;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(210, 62, 119, 0.15);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -24px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -24px;
}

.timeline-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(132, 54, 89, 0.08);
    border: 1px solid #f8dce9;
    transition: 0.3s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(132, 54, 89, 0.13);
}

.timeline-card .date {
    color: #df3c7b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.timeline-card h3 {
    margin: 8px 0 10px;
    color: #522b3d;
    font-size: 22px;
}

.timeline-card p {
    color: #806373;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================================
   COUNTER
========================================= */

.counter-section {
    position: relative;
    padding: 110px 7%;
    text-align: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 111, 175, 0.4), transparent 30%),
        linear-gradient(135deg, #641b3d, #a1265d, #4a1832);
    color: white;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 7, 27, 0.25);
}

.counter-content {
    position: relative;
    z-index: 2;
}

.counter-section h2 {
    margin: 12px 0;
    font-family: "Dancing Script", cursive;
    font-size: clamp(48px, 6vw, 70px);
}

.counter-section p {
    color: #f8dbe8;
}

.counter-grid {
    max-width: 850px;
    margin: 50px auto 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.counter-box {
    padding: 25px 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.counter-box strong {
    display: block;
    font-size: 36px;
}

.counter-box span {
    color: #f5cadc;
    font-size: 12px;
}

.total-time {
    max-width: 850px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.total-time div {
    padding: 18px 8px;
    border-radius: 15px;
    background: rgba(255,255,255,0.06);
}

.total-time strong {
    display: block;
    font-size: 20px;
}

.total-time span {
    font-size: 10px;
    color: #e9bfd2;
}


/* =========================================
   GIFTS
========================================= */

.surprises-section {
    background: linear-gradient(180deg, #fff8fc, #fff0f7);
}

.gift-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gift-card {
    padding: 40px 25px;
    text-align: center;
    background: white;
    border-radius: 25px;
    border: 1px solid #f8d8e7;
    box-shadow: 0 15px 35px rgba(128, 50, 85, 0.08);
    transition: 0.35s;
}

.gift-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(128, 50, 85, 0.15);
}

.gift-icon {
    font-size: 65px;
    margin-bottom: 18px;
    animation: floating 3s infinite;
}

.gift-card h3 {
    color: #5a3043;
    margin-bottom: 8px;
}

.gift-card p {
    color: #987286;
    font-size: 13px;
}


/* =========================================
   MEMORIES
========================================= */

.memories-section {
    background: #fffafd;
}

.memory-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.memory-card {
    min-height: 340px;
    border-radius: 25px;
    overflow: hidden;
    background: #fce7f1;
    position: relative;
    box-shadow: 0 15px 40px rgba(120, 49, 81, 0.1);
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
    display: block;
    transform: scale(1.05);
}

.memory-card.empty-photo {
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.7), transparent 30%),
        linear-gradient(135deg, #ffd8e9, #fff2f8);
}

.memory-card.empty-photo::before {
    content: "📸";
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-size: 55px;
}

.memory-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(45, 12, 28, 0.82));
    color: white;
}

.memory-caption span {
    font-family: "Dancing Script", cursive;
    font-size: 27px;
}

.memory-caption p {
    font-size: 12px;
    margin-top: 4px;
}


/* =========================================
   GUILT LETTER
========================================= */

.guilt-section {
    background:
        radial-gradient(circle at top left, rgba(255, 133, 184, 0.14), transparent 35%),
        linear-gradient(135deg, #fff6fb, #ffeaf5, #fff);
}

.letter {
    max-width: 950px;
    margin: auto;
    background: #fff;
    padding: 12px;
    border-radius: 28px;
    box-shadow:
        0 30px 80px rgba(170, 61, 111, 0.14),
        0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f7d5e5;
}

.letter-top {
    display: flex;
    justify-content: space-between;
    padding: 25px 35px;
    color: #a83a6c;
    font-size: 13px;
    font-weight: 600;
}

.letter-paper {
    padding: 55px 70px;
    border-radius: 20px;
    background:
        linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)),
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 31px,
            rgba(218, 67, 125, 0.09) 32px
        );
}

.letter-paper p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 2;
    color: #503642;
    margin-bottom: 25px;
}

.letter-paper b {
    color: #c3316d;
}

.letter-highlight {
    margin: 45px 0;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #f3c4d8;
    border-bottom: 1px solid #f3c4d8;
    font-family: "Dancing Script", cursive;
    font-size: 27px;
    line-height: 1.4;
    color: #c53270;
}

.final-paragraph {
    color: #9b2c5f !important;
    font-weight: 600;
}

.signature {
    text-align: right;
    margin-top: 50px;
    font-family: "Dancing Script", cursive;
    color: #a53c6c;
    font-size: 25px;
}

.signature strong {
    display: block;
    font-family: "Great Vibes", cursive;
    font-size: 42px;
    margin-top: 5px;
}


/* =========================================
   FINAL MESSAGE
========================================= */

.message-section {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 104, 173, 0.16), transparent 35%),
        #fff8fc;
}

.final-card {
    max-width: 750px;
    margin: auto;
    padding: 60px 50px;
    text-align: center;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(134, 49, 86, 0.1);
    border: 1px solid #f6d6e5;
}

.big-heart {
    font-size: 75px;
    animation: heartbeat 1.5s infinite;
}

.final-card h2 {
    margin: 20px 0;
    font-family: "Great Vibes", cursive;
    font-size: 55px;
    color: #c42f6e;
}

.final-card p {
    color: #785769;
    line-height: 1.9;
    margin: 18px 0;
}

.special-message {
    margin: 35px 0;
    font-family: "Dancing Script", cursive;
    font-size: 35px;
    line-height: 1.35;
    color: #d13777;
}

.final-card h3 {
    color: #8d3a60;
    margin-top: 30px;
}

.signature-final {
    margin-top: 25px;
    font-family: "Dancing Script", cursive;
    font-size: 27px;
    color: #c22f6d;
}


/* =========================================
   FOOTER
========================================= */

footer {
    text-align: center;
    padding: 60px 20px;
    background: #3d1228;
    color: white;
}

.footer-heart {
    font-size: 40px;
    animation: heartbeat 1.5s infinite;
}

footer h2 {
    margin: 10px 0;
    font-family: "Dancing Script", cursive;
    font-size: 35px;
}

footer p {
    color: #e6bfd0;
    font-size: 13px;
    margin-bottom: 18px;
}

footer span {
    color: #bb8ca2;
    font-size: 11px;
}


/* =========================================
   MODAL
========================================= */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(39, 9, 24, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-box {
    position: relative;
    width: min(500px, 100%);
    padding: 50px 35px;
    text-align: center;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    animation: modalPop 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    border: 0;
    background: transparent;
    font-size: 32px;
    color: #a66b82;
}

.modal-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.modal-box h2 {
    font-family: "Dancing Script", cursive;
    color: #c53070;
    font-size: 38px;
}

.modal-box p {
    margin: 20px 0;
    color: #745566;
    line-height: 1.8;
}

.modal-btn {
    border: 0;
    border-radius: 50px;
    padding: 13px 28px;
    background: #d83b79;
    color: white;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================
   FLOATING HEARTS
========================================= */

.hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    font-size: 18px;
    opacity: 0.6;
    animation: riseHeart linear forwards;
}

@keyframes riseHeart {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}


/* =========================================
   CONFETTI
========================================= */

.confetti-piece {
    position: fixed;
    width: 9px;
    height: 15px;
    top: -30px;
    z-index: 10000;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(110vh) rotate(720deg);
    }
}


/* =========================================
   HEART BURST
========================================= */

.burst-heart {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    font-size: 25px;
    animation: burst 1.2s ease-out forwards;
}

@keyframes burst {

    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(1.8);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .menu-btn {
        display: block;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        padding: 20px;
        flex-direction: column;
        background: rgba(255, 248, 252, 0.98);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .navbar nav.active {
        display: flex;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 65px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -4px;
        right: auto;
    }

    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gift-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .section {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-text {
        font-size: 14px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .total-time {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-grid {
        grid-template-columns: 1fr;
    }

    .memory-grid {
        grid-template-columns: 1fr;
    }

    .letter-top {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .letter-paper {
        padding: 35px 20px;
    }

    .letter-paper p {
        font-size: 15px;
        line-height: 1.85;
    }

    .letter-highlight {
        font-size: 23px;
        padding: 25px 10px;
    }

    .final-card {
        padding: 45px 22px;
    }

    .final-card h2 {
        font-size: 45px;
    }

    .special-message {
        font-size: 29px;
    }
}
```
