/* =========================================
   GLOBAL RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}


/* =========================================
   BODY
========================================= */

body {
    min-height: 100vh;

    font-family: "Poppins", sans-serif;

    color: #4a2635;

    overflow-x: hidden;

    background:
        linear-gradient(
            135deg,
            #fff0f6,
            #ffe1ec,
            #f9e4ff
        );
}


/* =========================================
   COUNTDOWN / LOCK SCREEN
========================================= */

#lock-screen {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: 100;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fff0f6,
            #ffdce9,
            #f1ddff
        );
}


/* =========================================
   COUNTDOWN CONTENT
========================================= */

.lock-content {
    width: 90%;
    max-width: 800px;

    padding: 40px;
}


/* =========================================
   COUNTDOWN HEART
========================================= */

.lock-heart {
    font-size: 70px;

    margin-bottom: 20px;

    animation:
        heartbeat 1.5s ease-in-out infinite;
}


/* =========================================
   SMALL HEADINGS
========================================= */

.small-heading {
    font-size: 13px;

    letter-spacing: 4px;

    font-weight: 600;

    color: #b44c72;

    margin-bottom: 25px;
}


/* =========================================
   COUNTDOWN HEADING
========================================= */

.lock-content h2 {
    font-family:
        "Poppins",
        sans-serif;

    font-size: 30px;

    font-weight: 400;

    color: #6e4557;

    margin-top: 20px;
}


/* =========================================
   COUNTDOWN DATE
========================================= */

.lock-content h1 {
    font-family:
        "Great Vibes",
        cursive;

    font-size:
        clamp(60px, 8vw, 100px);

    font-weight: 400;

    color: #e52f75;

    margin: 10px 0 20px;
}


/* =========================================
   COUNTDOWN MESSAGE
========================================= */

.lock-message {
    font-size: 18px;

    color: #765765;

    margin-bottom: 35px;
}


/* =========================================
   COUNTDOWN CONTAINER
========================================= */

.countdown {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================
   COUNTDOWN BOX
========================================= */

.countdown-box {
    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.75);

    box-shadow:
        0 15px 35px
        rgba(160, 58, 100, 0.15);

    backdrop-filter:
        blur(10px);
}


/* =========================================
   COUNTDOWN NUMBER
========================================= */

.countdown-box span {
    font-size: 38px;

    font-weight: 600;

    color: #d6336c;
}


/* =========================================
   COUNTDOWN LABEL
========================================= */

.countdown-box small {
    margin-top: 5px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #876170;
}


/* =========================================
   COUNTDOWN BOTTOM MESSAGE
========================================= */

.unlock-message {
    margin-top: 35px;

    font-size: 14px;

    color: #9b6178;
}


/* =========================================
   HIDE BIRTHDAY PAGE BEFORE UNLOCK
========================================= */

#birthday-content {
    display: none;
}


/* =========================================
   BIRTHDAY ALREADY UNLOCKED
========================================= */

body.birthday-unlocked #lock-screen {
    display: none;
}

body.birthday-unlocked #birthday-content {
    display: flex;
}


/* =========================================
   BIRTHDAY HERO SECTION
========================================= */

.hero {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 80px;

    padding: 100px 8%;

    position: relative;

    overflow: hidden;
}


/* =========================================
   HERO LEFT CONTENT
========================================= */

.hero-content {
    max-width: 650px;

    position: relative;

    z-index: 2;

    animation:
        fadeInLeft 1.5s ease;
}


/* =========================================
   HERO SMALL TOP LINE
========================================= */

.hero-small-text {
    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 22px;

    color: #6e4557;
}


/* =========================================
   BIRTHDAY HEADING
========================================= */

.hero h1 {
    font-family:
        "Great Vibes",
        cursive;

    font-size:
        clamp(65px, 8vw, 110px);

    line-height: 1;

    font-weight: 400;

    color: #9e365d;

    margin-top: 0;
}


/* =========================================
   WIFE NAME
========================================= */

.hero h1 span {
    display: block;

    font-size:
        clamp(75px, 9vw, 125px);

    color: #e52f75;

    text-shadow:
        0 5px 20px
        rgba(229, 47, 117, 0.2);
}


/* =========================================
   GLOWING HEART BESIDE NAME
========================================= */

.name-heart {
    font-style: normal;

    display: inline-block;

    margin-left: 8px;

    animation:
        glowingHeart 1.5s ease-in-out infinite;
}


/* =========================================
   BIRTHDAY MESSAGE
========================================= */

.message {
    margin-top: 35px;

    font-size: 19px;

    line-height: 1.8;

    color: #674957;
}


/* =========================================
   LOVE MESSAGE
========================================= */

.love-message {
    margin-top: 15px;

    font-size: 17px;

    color: #9b526f;
}


/* =========================================
   HERO MESSAGE
========================================= */

.hero-message {
    margin-top: 35px;

    max-width: 520px;

    font-size: 17px;

    line-height: 1.8;

    color: #674957;
}


/* =========================================
   BEGIN OUR STORY BUTTON
========================================= */

.start-button {
    margin-top: 35px;

    padding: 16px 30px;

    border: none;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ff4f91,
            #d82f6f
        );

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 12px 30px
        rgba(216, 47, 111, 0.3);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   BUTTON ARROW
========================================= */

.start-button span {
    margin-left: 10px;

    font-size: 20px;
}


/* =========================================
   BUTTON HOVER
========================================= */

.start-button:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 18px 35px
        rgba(216, 47, 111, 0.4);
}


/* =========================================
   PHOTO SECTION
========================================= */

.photo-section {
    position: relative;

    z-index: 2;

    animation:
        fadeInRight 1.5s ease;
}


/* =========================================
   PHOTO FRAME
========================================= */

.photo-frame {
    width: 390px;

    height: 500px;

    padding: 12px;

    border-radius:
        200px 200px 30px 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ffd6e5
        );

    box-shadow:
        0 25px 60px
        rgba(130, 43, 80, 0.18);

    transform:
        rotate(3deg);

    overflow: hidden;

    animation:
        photoFloat 5s ease-in-out infinite;
}


/* =========================================
   PHOTO CONTAINER
========================================= */

.photo-placeholder {
    width: 100%;
    height: 100%;

    border-radius:
        190px 190px 20px 20px;

    background:
        linear-gradient(
            160deg,
            #ffd1e1,
            #f5d9ff
        );

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}


/* =========================================
   SHRUTHI PHOTO
========================================= */

.photo-placeholder img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        190px 190px 20px 20px;

    display: block;

    max-width: 100%;
    max-height: 100%;

    animation:
        photoBreathing 6s ease-in-out infinite;

    transform-origin:
        center center;
}


/* =========================================
   PHOTO BREATHING EFFECT
========================================= */

@keyframes photoBreathing {

    0% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.035);
    }

    100% {
        transform:
            scale(1);
    }
}


/* =========================================
   DECORATIVE GLOW
========================================= */

.glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(10px);

    opacity: 0.5;
}


.glow-one {
    width: 350px;
    height: 350px;

    background: #ffb6d2;

    top: -100px;
    left: -100px;

    animation:
        floatGlow 6s ease-in-out infinite;
}


.glow-two {
    width: 300px;
    height: 300px;

    background: #dcb5ff;

    right: -100px;
    bottom: -80px;

    animation:
        floatGlow 7s ease-in-out infinite reverse;
}


/* =========================================
   ANIMATION - LEFT CONTENT
========================================= */

@keyframes fadeInLeft {

    from {
        opacity: 0;

        transform:
            translateX(-60px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


/* =========================================
   ANIMATION - RIGHT PHOTO
========================================= */

@keyframes fadeInRight {

    from {
        opacity: 0;

        transform:
            translateX(60px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


/* =========================================
   HEARTBEAT ANIMATION
========================================= */

@keyframes heartbeat {

    0% {
        transform:
            scale(1);
    }

    15% {
        transform:
            scale(1.15);
    }

    30% {
        transform:
            scale(1);
    }

    45% {
        transform:
            scale(1.1);
    }

    60% {
        transform:
            scale(1);
    }
}


/* =========================================
   GLOWING HEART ANIMATION
========================================= */

@keyframes glowingHeart {

    0% {
        transform:
            scale(1);

        filter:
            drop-shadow(
                0 0 2px #ff4f91
            );
    }

    50% {
        transform:
            scale(1.25);

        filter:
            drop-shadow(
                0 0 15px #ff4f91
            );
    }

    100% {
        transform:
            scale(1);

        filter:
            drop-shadow(
                0 0 2px #ff4f91
            );
    }
}


/* =========================================
   GLOWING CIRCLE ANIMATION
========================================= */

@keyframes floatGlow {

    0% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(30px, 30px);
    }

    100% {
        transform:
            translate(0, 0);
    }
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    z-index: 5;
}


.scroll-indicator span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border:
        2px solid #d84b78;

    border-radius: 50%;

    color: #d84b78;

    font-size: 25px;

    animation:
        bounce 1.5s infinite;
}


/* =========================================
   SCROLL ARROW ANIMATION
========================================= */

@keyframes bounce {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(10px);
    }
}


/* =========================================
   FLOATING HEARTS
========================================= */

.floating-heart {
    position: fixed;

    bottom: -30px;

    pointer-events: none;

    z-index: 1;

    animation-name:
        floatHeart;

    animation-timing-function:
        linear;

    animation-fill-mode:
        forwards;
}


/* =========================================
   FLOATING HEART ANIMATION
========================================= */

@keyframes floatHeart {

    0% {
        transform:
            translateY(0)
            rotate(0deg);

        opacity: 1;
    }

    100% {
        transform:
            translateY(-110vh)
            rotate(360deg);

        opacity: 0;
    }
}


/* =========================================
   OUR STORY SECTION
========================================= */

.story-section {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 120px 8%;

    position: relative;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fff7fa,
            #ffe8f1,
            #f7eaff
        );

    overflow: hidden;
}


/* =========================================
   STORY CONTAINER
========================================= */

.story-container {
    width: 100%;

    max-width: 1100px;
}


/* =========================================
   STORY CARD
========================================= */

.story-card {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 80px;

    text-align: left;
}


.reverse-card {
    flex-direction: row-reverse;
}


/* =========================================
   STORY PHOTO
========================================= */

.story-photo {
    flex: 0 0 360px;

    position: relative;

    transform:
        rotate(-3deg);
}


.story-photo-placeholder {
    width: 360px;
    height: 430px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ffe0eb
        );

    box-shadow:
        0 20px 50px
        rgba(130, 43, 80, 0.15);
}


.story-photo-placeholder span {
    font-size: 60px;

    margin-bottom: 15px;
}


.story-photo-placeholder p {
    font-size: 13px;

    color: #a04f70;
}


/* =========================================
   STORY CARD CONTENT
========================================= */

.story-card-content {
    max-width: 550px;
}


/* =========================================
   STORY CHAPTER
========================================= */

.story-chapter {
    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 600;

    color: #b44c72;

    margin-bottom: 15px;
}


/* =========================================
   STORY TEXT
========================================= */

.story-text {
    font-size: 17px;

    line-height: 1.9;

    color: #674957;

    margin-bottom: 18px;
}


/* =========================================
   STORY HIGHLIGHT
========================================= */

.story-highlight {
    font-family:
        "Great Vibes",
        cursive;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.5;

    color: #d6336c;

    margin-top: 30px;
}


.story-highlight strong {
    font-weight: 400;
}


/* =========================================
   STORY BUTTON
========================================= */

.story-next-button {
    display: block;

    margin: 70px auto 0;

    padding: 15px 28px;

    border:
        2px solid #e05280;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.7);

    color: #c93469;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 15px;

    font-weight: 500;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.story-next-button span {
    margin-left: 8px;

    font-size: 18px;
}


.story-next-button:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 12px 30px
        rgba(214, 51, 108, 0.2);
}


/* =========================================
   MEMORY / SCRAPBOOK SECTION
========================================= */

.memory-chapter {
    position: relative;

    width: 100%;

    max-width: 1150px;

    min-height: 780px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   MAIN MEMORY STORY CARD
========================================= */

.memory-content {
    position: relative;

    z-index: 5;

    width: 560px;

    max-width: 55%;

    padding: 55px 50px;

    background:
        rgba(255, 255, 255, 0.96);

    border-radius: 18px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.12);

    text-align: center;

    transform:
        rotate(-1deg);
}


/* =========================================
   MEMORY HEADING
========================================= */

.memory-content h2 {
    margin: 10px 0 30px;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 48px;

    font-weight: normal;

    line-height: 1.2;
}


/* =========================================
   MEMORY TEXT
========================================= */

.memory-text {
    margin-bottom: 22px;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   MEMORY HEART
========================================= */

.memory-heart {
    margin-top: 25px;

    font-size: 26px;
}


/* =========================================
   MEMORY PHOTOS
========================================= */

.memory-photo {
    position: absolute;

    width: 165px;

    height: 215px;

    padding: 9px;

    background: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);

    z-index: 3;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.memory-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


.memory-photo:hover {
    z-index: 10;

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.22);
}


/* =========================================
   PHOTO ONE
========================================= */

.photo-one {
    top: 80px;

    left: 20px;

    transform:
        rotate(-8deg);
}


.photo-one:hover {
    transform:
        rotate(-3deg)
        scale(1.04);
}


/* =========================================
   PHOTO TWO
========================================= */

.photo-two {
    top: 230px;

    right: 15px;

    transform:
        rotate(7deg);
}


.photo-two:hover {
    transform:
        rotate(3deg)
        scale(1.04);
}


/* =========================================
   PHOTO THREE
========================================= */

.photo-three {
    bottom: 45px;

    left: 25px;

    transform:
        rotate(-5deg);
}


.photo-three:hover {
    transform:
        rotate(-1deg)
        scale(1.04);
}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 900px) {

    .hero {
        flex-direction: column;

        gap: 50px;

        padding-top: 130px;

        text-align: center;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero-message {
        margin-left: auto;
        margin-right: auto;
    }


    .photo-frame {
        width: 300px;

        height: 390px;
    }


    .memory-content {
        max-width: 60%;
    }


    .memory-photo {
        width: 145px;

        height: 190px;
    }


    .photo-one {
        left: 0;
    }


    .photo-two {
        right: 0;
    }


    .photo-three {
        left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .story-section {
        padding:
            90px 20px;
    }


    .story-card,
    .reverse-card {
        flex-direction: column;
    }


    .story-photo {
        flex-basis: auto;
    }


    .story-photo-placeholder {
        width: 280px;

        height: 350px;
    }


    .story-card-content {
        text-align: center;
    }


    .story-text {
        font-size: 16px;
    }


    /* MEMORY SECTION */

    .memory-chapter {
        min-height: auto;

        padding:
            30px 15px 50px;

        display: flex;

        flex-direction: column;
    }


    .memory-content {
        width: 100%;

        max-width: 92%;

        padding:
            40px 25px;

        order: 2;

        transform:
            rotate(0);
    }


    .memory-content h2 {
        font-size: 40px;
    }


    .memory-text {
        font-size: 15px;

        line-height: 1.75;
    }


    .memory-photo {
        position: relative;

        width: 145px;

        height: 185px;

        margin: 10px;

        order: 1;
    }


    .photo-one,
    .photo-two,
    .photo-three {
        top: auto;

        right: auto;

        bottom: auto;

        left: auto;
    }


    .photo-one {
        align-self: flex-start;

        transform:
            rotate(-5deg);
    }


    .photo-two {
        align-self: flex-end;

        transform:
            rotate(5deg);
    }


    .photo-three {
        align-self: flex-start;

        transform:
            rotate(-4deg);
    }


    .story-next-button {
        margin-top: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    /* Countdown */

    .lock-content {
        padding: 20px;
    }


    .lock-heart {
        font-size: 55px;
    }


    .lock-content h2 {
        font-size: 22px;
    }


    .countdown {
        gap: 8px;
    }


    .countdown-box {
        width: 75px;

        height: 85px;

        border-radius: 18px;
    }


    .countdown-box span {
        font-size: 25px;
    }


    .countdown-box small {
        font-size: 9px;

        letter-spacing: 1px;
    }


    /* Birthday page */

    .hero {
        padding-left: 20px;

        padding-right: 20px;
    }


    .hero-small-text {
        font-size: 14px;

        margin-bottom: 18px;
    }


    .hero h1 {
        font-size: 60px;
    }


    .hero h1 span {
        font-size: 75px;
    }


    .hero-message {
        font-size: 16px;
    }


    /* Photo */

    .photo-frame {
        width: 260px;

        height: 340px;
    }

}
/* =========================================
   BHILAI / ENGAGEMENT MEMORY
========================================= */

.engagement-memory {
    position: relative;

    width: 100%;

    max-width: 1150px;

    min-height: 780px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   MAIN BHILAI CONTENT
========================================= */

.engagement-content {
    position: relative;

    z-index: 5;

    width: 560px;

    max-width: 55%;

    padding: 55px 50px;

    background:
        rgba(255, 255, 255, 0.96);

    border-radius: 18px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.12);

    text-align: center;

    transform:
        rotate(1deg);
}


/* =========================================
   BHILAI HEADING
========================================= */

.engagement-content h2 {
    margin: 10px 0 20px;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 48px;

    font-weight: normal;

    line-height: 1.2;

    color: #9e365d;
}


/* =========================================
   BHILAI DATE
========================================= */

.engagement-date {
    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b44c72;

    margin-bottom: 10px;
}


/* =========================================
   BHILAI DIVIDER
========================================= */

.engagement-divider {
    margin: 15px 0 25px;

    font-size: 25px;
}


/* =========================================
   BHILAI PHOTOS
========================================= */

.engagement-photo {
    position: absolute;

    width: 160px;

    height: 205px;

    padding: 9px;

    background: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);

    z-index: 3;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.engagement-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


.engagement-photo:hover {
    z-index: 10;

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.22);
}


/* =========================================
   BHILAI PHOTO 1
========================================= */

.engagement-photo-one {
    top: 55px;

    left: 15px;

    transform:
        rotate(-8deg);
}


.engagement-photo-one:hover {
    transform:
        rotate(-3deg)
        scale(1.05);
}


/* =========================================
   BHILAI PHOTO 2
========================================= */

.engagement-photo-two {
    top: 70px;

    right: 15px;

    transform:
        rotate(7deg);
}


.engagement-photo-two:hover {
    transform:
        rotate(3deg)
        scale(1.05);
}


/* =========================================
   BHILAI PHOTO 3
========================================= */

.engagement-photo-three {
    width: 250px;
    height: 190px;
    bottom: 35px;

    left: 0px;

    transform:
        rotate(-4deg);
}


.engagement-photo-three:hover {
    transform:
        rotate(-1deg)
        scale(1.05);
}


/* =========================================
   BHILAI PHOTO 4
========================================= */

.engagement-photo-four {
    bottom: 55px;

    right: 90px;

    transform:
        rotate(5deg);
}


.engagement-photo-four:hover {
    transform:
        rotate(1deg)
        scale(1.05);
}


/* =========================================
   BHILAI MOBILE
========================================= */

@media (max-width: 800px) {

    .engagement-memory {
        min-height: auto;

        padding:
            30px 15px 50px;

        display: flex;

        flex-direction: column;
    }


    .engagement-content {
        width: 100%;

        max-width: 92%;

        padding:
            40px 25px;

        order: 3;

        transform:
            rotate(0);
    }


    .engagement-content h2 {
        font-size: 40px;
    }


    .engagement-photo {
        position: relative;

        width: 145px;

        height: 185px;

        margin: 10px;

        order: 1;
    }


    .engagement-photo-one,
    .engagement-photo-two,
    .engagement-photo-three,
    .engagement-photo-four {

        top: auto;

        right: auto;

        bottom: auto;

        left: auto;
    }


    .engagement-photo-one {
        align-self: flex-start;

        transform:
            rotate(-5deg);
    }


    .engagement-photo-two {
        align-self: flex-end;

        transform:
            rotate(5deg);
    }


    .engagement-photo-three {
        align-self: flex-start;

        transform:
            rotate(-4deg);
    }


    .engagement-photo-four {
        align-self: flex-end;

        transform:
            rotate(4deg);
    }

}
/* =========================================
   WEDDING MEMORY SECTION
========================================= */

.wedding-section {
    background:
        linear-gradient(
            135deg,
            #fffaf8,
            #fff0f3,
            #f9efff
        );
}


.wedding-memory {
    position: relative;

    width: 100%;

    max-width: 1150px;

    min-height: 900px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   MAIN WEDDING CONTENT
========================================= */

.wedding-content {
    position: relative;

    z-index: 6;

    width: 500px;

    max-width: 48%;

    padding: 50px 45px;

    background:
        rgba(255, 255, 255, 0.96);

    border-radius: 20px;

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.12);

    text-align: center;

    transform:
        rotate(-1deg);
}


/* =========================================
   WEDDING HEADING
========================================= */

.wedding-content h2 {
    margin: 10px 0 20px;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 52px;

    font-weight: normal;

    line-height: 1.2;

    color: #9e365d;
}


/* =========================================
   WEDDING DATE
========================================= */

.wedding-date {
    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b44c72;
}


/* =========================================
   WEDDING DIVIDER
========================================= */

.wedding-divider {
    margin: 25px 0;

    font-size: 24px;
}


/* =========================================
   WEDDING TEXT
========================================= */

.wedding-text {
    font-size: 16px;

    line-height: 1.85;

    color: #674957;

    margin-bottom: 20px;
}


/* =========================================
   WEDDING HEART
========================================= */

.wedding-heart {
    margin-top: 25px;

    font-size: 28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* =========================================
   WEDDING PHOTOS
========================================= */

.wedding-photo {
    position: absolute;

    background: #ffffff;

    padding: 9px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);

    z-index: 3;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.wedding-photo img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;
    background: #ffffff;
}


.wedding-photo:hover {
    z-index: 10;

    box-shadow:
        0 22px 45px
        rgba(0, 0, 0, 0.23);
}


/* =========================================
   WEDDING PHOTO 1
   FAMILY / STAGE PHOTO
========================================= */

.wedding-photo-one {
    width: 190px;

    height: 245px;

    top: 35px;

    left: 20px;

    transform:
        rotate(-6deg);
}


.wedding-photo-one:hover {
    transform:
        rotate(-2deg)
        scale(1.04);
}


/* =========================================
   WEDDING PHOTO 2
   COUPLE PHOTO
========================================= */

.wedding-photo-two {
    width: 190px;

    height: 245px;

    top: 20px;

    right: 25px;

    transform:
        rotate(6deg);
}


.wedding-photo-two:hover {
    transform:
        rotate(2deg)
        scale(1.04);
}


/* =========================================
   WEDDING PHOTO 3
========================================= */

.wedding-photo-three {
    width: 180px;

    height: 240px;

    top: 310px;

    left: 5px;

    transform:
        rotate(5deg);
}


.wedding-photo-three:hover {
    transform:
        rotate(2deg)
        scale(1.04);
}


/* =========================================
   WEDDING PHOTO 4
========================================= */

.wedding-photo-four {
    width: 250px;

    height: 190px;

    top: 350px;

    right: -20px;

    transform:
        rotate(-4deg);
}


.wedding-photo-four:hover {
    transform:
        rotate(-2deg)
        scale(1.04);
}


/* =========================================
   WEDDING PHOTO 5
========================================= */

.wedding-photo-five {
    width: 190px;

    height: 245px;

    bottom: 35px;

    left: 90px;

    transform:
        rotate(-5deg);
}


.wedding-photo-five:hover {
    transform:
        rotate(-1deg)
        scale(1.04);
}


/* =========================================
   WEDDING PHOTO 6
========================================= */

.wedding-photo-six {
    width: 190px;

    height: 245px;

    bottom: 25px;

    right: 90px;

    transform:
        rotate(6deg);
}


.wedding-photo-six:hover {
    transform:
        rotate(2deg)
        scale(1.04);
}


/* =========================================
   WEDDING MOBILE
========================================= */

@media (max-width: 800px) {

    .wedding-memory {
        min-height: auto;

        padding:
            30px 15px 60px;

        display: flex;

        flex-direction: column;
    }


    .wedding-content {
        width: 100%;

        max-width: 92%;

        padding:
            40px 25px;

        order: 3;

        transform:
            rotate(0);
    }


    .wedding-content h2 {
        font-size: 42px;
    }


    .wedding-text {
        font-size: 15px;

        line-height: 1.75;
    }


    .wedding-photo {
        position: relative;

        width: 145px;

        height: 185px;

        margin: 10px;

        order: 1;
    }


    .wedding-photo-one,
    .wedding-photo-two,
    .wedding-photo-three,
    .wedding-photo-four,
    .wedding-photo-five,
    .wedding-photo-six {

        top: auto;

        right: auto;

        bottom: auto;

        left: auto;
    }


    .wedding-photo-one {
        align-self: flex-start;

        transform:
            rotate(-5deg);
    }


    .wedding-photo-two {
        align-self: flex-end;

        transform:
            rotate(5deg);
    }


    .wedding-photo-three {
        align-self: flex-start;

        transform:
            rotate(4deg);
    }


    .wedding-photo-four {
        align-self: flex-end;

        transform:
            rotate(-4deg);
    }


    .wedding-photo-five {
        align-self: flex-start;

        transform:
            rotate(-4deg);
    }


    .wedding-photo-six {
        align-self: flex-end;

        transform:
            rotate(4deg);
    }

}
/* =========================================
   THRISSUR SECTION
========================================= */

.thrissur-section {
    background:
        linear-gradient(
            135deg,
            #fff8f3,
            #fff0f4,
            #f5f0ff
        );
}


/* =========================================
   TOP PHOTOS
========================================= */

.thrissur-top-photos {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 20px 40px 0;
}


/* =========================================
   MIDDLE PHOTOS
========================================= */

.thrissur-middle-photos {
    width: 100%;

    max-width: 1000px;

    margin: 40px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 0 40px;
}


/* =========================================
   MAIN THRISSUR CONTENT
========================================= */

.thrissur-content {
    position: relative;

    z-index: 6;

    width: 560px;

    max-width: 90%;

    margin: -20px auto 0;

    padding: 55px 50px;

    background:
        rgba(255, 255, 255, 0.96);

    border-radius: 22px;

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.10);

    text-align: center;

    transform:
        rotate(-1deg);
}


/* =========================================
   THRISSUR HEADING
========================================= */

.thrissur-content h2 {
    margin: 10px 0 18px;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 54px;

    font-weight: normal;

    line-height: 1.2;

    color: #9e365d;
}


/* =========================================
   DATE
========================================= */

.thrissur-date {
    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b44c72;

    margin-bottom: 10px;
}


/* =========================================
   DIVIDER
========================================= */

.thrissur-divider {
    margin: 22px 0;

    font-size: 25px;
}


/* =========================================
   THRISSUR TEXT
========================================= */

.thrissur-text {
    font-size: 15px;

    line-height: 1.85;

    color: #674957;

    margin-bottom: 20px;
}


/* =========================================
   CITY NAME
========================================= */

.thrissur-city {
    font-family:
        "Great Vibes",
        cursive;

    font-size: 42px;

    color: #d6336c;

    margin: 10px 0 15px;
}


/* =========================================
   FINAL HIGHLIGHT
========================================= */

.thrissur-highlight {
    margin-top: 30px;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 29px;

    line-height: 1.5;

    color: #d6336c;
}


/* =========================================
   HEART
========================================= */

.thrissur-heart {
    margin-top: 25px;

    font-size: 28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* =========================================
   THRISSUR PHOTO
========================================= */

.thrissur-photo {
    position: relative;

    width: 170px;

    height: 215px;

    padding: 9px;

    background: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.16);

    z-index: 3;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.thrissur-photo img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    background: #ffffff;
}


.thrissur-photo:hover {
    z-index: 10;

    box-shadow:
        0 22px 45px
        rgba(0, 0, 0, 0.23);
}


/* =========================================
   PHOTO ONE
========================================= */

.thrissur-photo-one {
    transform:
        rotate(-7deg);
}


.thrissur-photo-one:hover {
    transform:
        rotate(-3deg)
        scale(1.05);
}


/* =========================================
   PHOTO TWO
========================================= */

.thrissur-photo-two {
    transform:
        rotate(6deg);
}


.thrissur-photo-two:hover {
    transform:
        rotate(2deg)
        scale(1.05);
}


/* =========================================
   PHOTO THREE
========================================= */

.thrissur-photo-three {
    transform:
        rotate(5deg);
}


.thrissur-photo-three:hover {
    transform:
        rotate(2deg)
        scale(1.05);
}


/* =========================================
   PHOTO FOUR
========================================= */

.thrissur-photo-four {
    transform:
        rotate(-5deg);
}


.thrissur-photo-four:hover {
    transform:
        rotate(-2deg)
        scale(1.05);
}


/* =========================================
   LITTLE MOMENTS
========================================= */

.thrissur-little-moments {
    width: 100%;

    max-width: 1050px;

    margin: 70px auto 0;

    text-align: center;
}


.thrissur-little-title {
    font-family:
        "Great Vibes",
        cursive;

    font-size: 34px;

    color: #9e365d;

    margin-bottom: 35px;
}


/* =========================================
   BOTTOM PHOTO ROW
========================================= */

.thrissur-bottom-photos {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 25px;

    padding: 0 20px;
}


.thrissur-bottom-photos .thrissur-photo {
    width: 155px;

    height: 195px;

    flex-shrink: 0;
}


/* =========================================
   BOTTOM PHOTO ROTATIONS
========================================= */

.thrissur-photo-five {
    transform:
        rotate(-6deg);
}


.thrissur-photo-six {
    transform:
        rotate(4deg);
}


.thrissur-photo-seven {
    transform:
        rotate(-4deg);
}


.thrissur-photo-eight {
    transform:
        rotate(6deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .thrissur-section {
        padding:
            80px 15px;
    }


    .thrissur-top-photos,
    .thrissur-middle-photos {
        padding: 0;

        gap: 15px;

        justify-content: center;
    }


    .thrissur-top-photos .thrissur-photo,
    .thrissur-middle-photos .thrissur-photo {
        width: 140px;

        height: 180px;
    }


    .thrissur-content {
        width: 100%;

        max-width: 94%;

        margin: 25px auto 0;

        padding:
            40px 25px;

        transform:
            rotate(0);
    }


    .thrissur-content h2 {
        font-size: 42px;
    }


    .thrissur-text {
        font-size: 15px;

        line-height: 1.75;
    }


    .thrissur-city {
        font-size: 38px;
    }


    .thrissur-highlight {
        font-size: 25px;
    }


    .thrissur-middle-photos {
        margin-top: 30px;
    }


    .thrissur-little-moments {
        margin-top: 50px;
    }


    .thrissur-little-title {
        font-size: 30px;
    }


    .thrissur-bottom-photos {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

        padding: 0 10px;

        justify-items: center;
    }


    .thrissur-bottom-photos .thrissur-photo {
        width: 140px;

        height: 175px;
    }

}
/* ========================================
   LITTLE MOMENTS
======================================== */

.little-moments-section {

    background:
        linear-gradient(
            135deg,
            #fff9f7,
            #fff0f4,
            #f8f3ff
        );

    padding-top: 100px;
    padding-bottom: 120px;

    position: relative;
}


/* ========================================
   TITLE
======================================== */

.little-moments-title {

    margin: 10px 0 18px;

    font-family: "Great Vibes", cursive;

    font-size: 58px;
    font-weight: normal;

    color: #9e365d;

    text-align: center;
}


.little-moments-intro {

    max-width: 620px;

    margin: 0 auto 65px;

    font-size: 16px;
    line-height: 1.8;

    color: #674957;

    text-align: center;
}


/* ========================================
   VIDEO GRID
======================================== */

.little-moments-grid {

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 38px 30px;

    align-items: start;
}


/* ========================================
   POLAROID CARD
======================================== */

.moment-card {

    background: #ffffff;

    padding: 10px 10px 18px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    position: relative;
}


/* Video */

.moment-video {

    width: 100%;
    height: 260px;

    position: relative;

    overflow: hidden;

    background: #f5f5f5;
}


.moment-video video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ========================================
   PLAY BUTTON
======================================== */

.video-play {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;
    height: 58px;

    border: 2px solid white;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.25);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;

    padding-left: 3px;

    text-shadow:
        0 2px 5px rgba(0,0,0,.3);

    pointer-events: none;
}


/* ========================================
   CAPTIONS
======================================== */

.moment-caption {

    margin: 14px 5px 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.4;

    color: #674957;

    text-align: center;
}


/* ========================================
   SCRAPBOOK ROTATIONS
======================================== */

.moment-card-one {
    transform: rotate(-3deg);
}

.moment-card-two {
    transform: rotate(2deg);
}

.moment-card-three {
    transform: rotate(-2deg);
}

.moment-card-four {
    transform: rotate(3deg);
}

.moment-card-five {
    transform: rotate(-2deg);
}

.moment-card-six {
    transform: rotate(3deg);
}


/* ========================================
   HOVER
======================================== */

.moment-card:hover {

    z-index: 10;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.22);
}


.moment-card-one:hover,
.moment-card-two:hover,
.moment-card-three:hover,
.moment-card-four:hover,
.moment-card-five:hover,
.moment-card-six:hover {

    transform:
        rotate(0deg)
        scale(1.04);
}


/* ========================================
   CLOSING MESSAGE
======================================== */

.little-moments-message {

    max-width: 700px;

    margin: 85px auto 50px;

    padding: 22px 30px;

    background:
        rgba(255, 225, 235, 0.55);

    border-radius: 25px;

    text-align: center;

    color: #674957;

    font-size: 16px;

    line-height: 1.8;
}


.little-moments-message p {

    margin-bottom: 8px;
}


.little-moments-message .memory-heart {

    margin-top: 20px;

    font-size: 28px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .little-moments-section {

        padding: 80px 15px 100px;
    }


    .little-moments-title {

        font-size: 45px;
    }


    .little-moments-intro {

        font-size: 15px;

        margin-bottom: 45px;
    }


    .little-moments-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px 18px;
    }


    .moment-video {

        height: 210px;
    }


    .moment-caption {

        font-size: 13px;
    }


    .little-moments-message {

        margin-top: 60px;

        padding: 20px;

        font-size: 15px;
    }

}
/* ========================================
   KOCHI MEMORY SECTION
======================================== */

.kochi-section {
    background:
        linear-gradient(
            135deg,
            #fff9f5,
            #fff1f4,
            #f5f1ff
        );

    padding-top: 100px;
    padding-bottom: 120px;
}


/* ========================================
   KOCHI TITLE
======================================== */

.kochi-title {
    margin: 5px 0 5px;

    font-family: "Great Vibes", cursive;
    font-size: 62px;
    font-weight: normal;

    color: #9e365d;

    text-align: center;
}


.kochi-subtitle {
    margin-bottom: 55px;

    font-size: 15px;
    letter-spacing: 1px;

    color: #80606d;

    text-align: center;
}


/* ========================================
   KOCHI SCRAPBOOK AREA
======================================== */

.kochi-memory {

    position: relative;

    width: 100%;
    max-width: 1150px;

    min-height: 980px;

    margin: 0 auto;
}


/* ========================================
   CENTRAL STORY CARD
======================================== */

.kochi-content {

    position: absolute;

    z-index: 5;

    width: 500px;

    padding: 45px 45px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 22px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12);

    text-align: center;

    top: 30px;

    left: 50%;

    transform:
        translateX(-50%)
        rotate(-1deg);
}


.kochi-content h2 {

    margin: 8px 0 18px;

    font-family: "Great Vibes", cursive;

    font-size: 52px;

    font-weight: normal;

    color: #9e365d;
}


.kochi-divider {

    margin: 18px 0;

    font-size: 25px;
}


.kochi-text {

    font-size: 15px;

    line-height: 1.85;

    color: #674957;

    margin-bottom: 20px;
}


.kochi-heart {

    margin-top: 25px;

    font-size: 28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* ========================================
   PHOTO FRAMES
======================================== */

.kochi-photo {

    position: absolute;

    width: 175px;
    height: 220px;

    padding: 9px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.17);

    z-index: 7;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.kochi-photo img {

    width: 100%;
    height: 170px;

    object-fit: contain;

    display: block;

    background: #ffffff;
}


/* ========================================
   PHOTO CAPTIONS
======================================== */

.kochi-caption {

    margin: 9px 3px 0;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.3;

    text-align: center;

    color: #674957;
}


/* ========================================
   TOP SIDE PHOTOS
======================================== */

/* Photo 1 - Happiness */

.kochi-photo-one {

    top: 10px;
    left: 40px;

    transform: rotate(-7deg);
}


/* Photo 2 - Elephant */

.kochi-photo-two {

    top: 15px;
    right: 40px;

    transform: rotate(6deg);
}


/* ========================================
   LOWER SIDE PHOTOS
======================================== */

/* Photo 3 - Aami & Ammini */

.kochi-photo-three {

    width: 185px;

    top: 360px;
    left: 30px;

    transform: rotate(5deg);
}


.kochi-photo-three img {

    object-fit: cover;

    object-position: center;
}


/* Photo 4 - Sreethu photoshoot */

.kochi-photo-four {

    top: 370px;
    right: 30px;

    transform: rotate(-6deg);
}


/* ========================================
   BOTTOM FOUR PHOTOS
======================================== */

/* Photo 5 */

.kochi-photo-five {

    bottom: 10px;
    left: 40px;

    transform: rotate(-5deg);
}


/* Photo 6 */

.kochi-photo-six {

    bottom: 0;
    left: 320px;

    transform: rotate(4deg);
}


/* Photo 7 */

.kochi-photo-seven {

    bottom: 5px;
    right: 320px;

    transform: rotate(-4deg);
}


/* Photo 8 */

.kochi-photo-eight {

    bottom: 10px;
    right: 40px;

    transform: rotate(5deg);
}


/* ========================================
   HOVER EFFECT
======================================== */

.kochi-photo:hover {

    z-index: 10;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .kochi-section {

        padding: 80px 15px 100px;
    }


    .kochi-title {

        font-size: 48px;
    }


    .kochi-subtitle {

        margin-bottom: 35px;
    }


    .kochi-memory {

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 25px;
    }


    /* Story first */

    .kochi-content {

        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        max-width: 500px;

        padding: 40px 25px;

        transform: rotate(0deg);

        order: 1;
    }


    .kochi-content h2 {

        font-size: 44px;
    }


    /* All photos become normal flow */

    .kochi-photo {

        position: relative;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 175px;
        height: 215px;

        flex-shrink: 0;

        z-index: 7;
    }


    .kochi-photo-three {

        width: 185px;
    }


    /* Alternate sides */

    .kochi-photo-one,
    .kochi-photo-three,
    .kochi-photo-five,
    .kochi-photo-seven {

        align-self: flex-start;

        margin-left: 8%;
    }


    .kochi-photo-two,
    .kochi-photo-four,
    .kochi-photo-six,
    .kochi-photo-eight {

        align-self: flex-end;

        margin-right: 8%;
    }

}
/* ========================================
   PALAKKAD MEMORY SECTION
======================================== */

.palakkad-section {

    background:
        linear-gradient(
            135deg,
            #fffaf3,
            #f8f5ed,
            #f3f1f8
        );

    padding-top: 100px;
    padding-bottom: 140px;
}


/* ========================================
   PALAKKAD TITLE
======================================== */

.palakkad-title {

    margin: 5px 0 5px;

    font-family: "Great Vibes", cursive;

    font-size: 62px;

    font-weight: normal;

    color: #8d6845;

    text-align: center;
}


.palakkad-subtitle {

    margin-bottom: 55px;

    font-size: 15px;

    letter-spacing: 1px;

    color: #786451;

    text-align: center;
}


/* ========================================
   SCRAPBOOK AREA
======================================== */

.palakkad-memory {

    position: relative;

    width: 100%;

    max-width: 1150px;

    /*
       Extra height gives the village cat
       its own dedicated space below the
       story card.
    */
    min-height: 1200px;

    margin: 0 auto;
}


/* ========================================
   CENTRAL STORY
======================================== */

.palakkad-content {

    position: absolute;

    z-index: 5;

    width: 500px;

    padding: 45px 45px;

    background:
        rgba(255, 255, 255, 0.97);

    border-radius: 22px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12);

    text-align: center;

    top: 45px;

    left: 50%;

    transform:
        translateX(-50%)
        rotate(1deg);
}


.palakkad-content h2 {

    margin: 8px 0 18px;

    font-family: "Great Vibes", cursive;

    font-size: 52px;

    font-weight: normal;

    color: #8d6845;
}


.palakkad-divider {

    margin: 18px 0;

    font-size: 25px;
}


.palakkad-text {

    font-size: 15px;

    line-height: 1.85;

    color: #67584b;

    margin-bottom: 18px;
}


.palakkad-highlight {

    margin-top: 25px;

    font-family: "Great Vibes", cursive;

    font-size: 28px;

    line-height: 1.5;

    color: #a26f43;
}


/* ========================================
   PHOTO FRAMES
======================================== */

.palakkad-photo {

    position: absolute;

    width: 175px;

    height: 220px;

    padding: 9px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.17);

    z-index: 7;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.palakkad-photo img {

    width: 100%;

    height: 170px;

    object-fit: contain;

    display: block;

    background: #ffffff;
}


/* ========================================
   CAPTIONS
======================================== */

.palakkad-caption {

    margin: 9px 3px 0;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.3;

    text-align: center;

    color: #67584b;
}


/* ========================================
   PHOTO 1
   VALYEMMA'S HOME
======================================== */

.palakkad-photo-one {

    top: 15px;

    left: 45px;

    transform: rotate(-6deg);
}


/* ========================================
   PHOTO 2
   AMBALAM
======================================== */

.palakkad-photo-two {

    top: 20px;

    right: 45px;

    transform: rotate(6deg);
}


/* ========================================
   PHOTO 3
   ROAD TO HOME
======================================== */

.palakkad-photo-three {

    top: 420px;

    left: 35px;

    transform: rotate(5deg);
}


/* ========================================
   PHOTO 4
   UTHRALIKAVU
======================================== */

.palakkad-photo-four {

    top: 430px;

    right: 35px;

    transform: rotate(-5deg);
}


/* ========================================
   PHOTO 5
   VILLAGE CAT
======================================== */

/*
   The cat is deliberately placed well
   below the story card so it never
   overlaps the text.
*/

.palakkad-photo-five {

    top: 900px;

    left: 50%;

    transform:
        translateX(-50%)
        rotate(-3deg);
}


/* ========================================
   HOVER
======================================== */

.palakkad-photo:hover {

    z-index: 10;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .palakkad-section {

        padding: 80px 15px 120px;
    }


    .palakkad-title {

        font-size: 48px;
    }


    .palakkad-subtitle {

        margin-bottom: 35px;
    }


    .palakkad-memory {

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 25px;
    }


    .palakkad-content {

        position: relative;

        top: auto;

        left: auto;

        width: 100%;

        max-width: 500px;

        padding: 40px 25px;

        transform: rotate(0deg);

        order: 1;
    }


    .palakkad-content h2 {

        font-size: 44px;
    }


    .palakkad-text {

        font-size: 15px;

        line-height: 1.75;
    }


    .palakkad-highlight {

        font-size: 25px;
    }


    .palakkad-photo {

        position: relative;

        top: auto !important;

        right: auto !important;

        bottom: auto !important;

        left: auto !important;

        width: 175px;

        height: 215px;

        z-index: 7;
    }


    .palakkad-photo-one,
    .palakkad-photo-three {

        align-self: flex-start;

        margin-left: 8%;
    }


    .palakkad-photo-two,
    .palakkad-photo-four {

        align-self: flex-end;

        margin-right: 8%;
    }


    .palakkad-photo-five {

        align-self: center;

        margin-left: 0;
    }

}
/* =========================================================
   KOLLAM SECTION
   ========================================================= */

.kollam-section {
    background:linear-gradient(
        135deg,
        #f7fbff,
        #fff6f2,
        #f8f2ff
    );

    padding-top:100px;
    padding-bottom:140px;
}


/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.kollam-title {
    margin:5px 0 5px;

    font-family:"Great Vibes",cursive;
    font-size:62px;
    font-weight:normal;

    color:#52758a;

    text-align:center;
}


.kollam-subtitle {
    margin-bottom:55px;

    font-size:15px;
    letter-spacing:1px;

    color:#657783;

    text-align:center;
}


/* ---------------------------------------------------------
   MEMORY AREA
   --------------------------------------------------------- */

.kollam-memory {
    position:relative;

    width:100%;
    max-width:1150px;

    /*
       Extra height gives the bottom photo
       its own space below the story.
    */
    min-height:1180px;

    margin:0 auto;
}


/* ---------------------------------------------------------
   CENTRAL STORY CARD
   --------------------------------------------------------- */

.kollam-content {
    position:absolute;

    z-index:5;

    width:520px;

    padding:45px 45px;

    background:rgba(255,255,255,.97);

    border-radius:22px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.11);

    text-align:center;

    top:35px;
    left:50%;

    transform:
        translateX(-50%)
        rotate(-1deg);
}


/* Story card heading */

.kollam-content h2 {
    margin:8px 0 18px;

    font-family:"Great Vibes",cursive;

    font-size:52px;
    font-weight:normal;

    color:#52758a;
}


/* ---------------------------------------------------------
   DIVIDER
   --------------------------------------------------------- */

.kollam-divider {
    margin:18px 0;

    font-size:25px;
}


/* ---------------------------------------------------------
   NORMAL STORY TEXT
   --------------------------------------------------------- */

.kollam-text {
    font-size:15px;

    line-height:1.8;

    color:#59666d;

    margin-bottom:18px;
}


/* ---------------------------------------------------------
   HIGHLIGHTED MEMORY
   --------------------------------------------------------- */

.kollam-highlight {
    margin:25px 0;

    font-family:"Great Vibes",cursive;

    font-size:28px;

    line-height:1.5;

    color:#52758a;
}


/*
   Amal uses the regular Poppins font.

   This avoids the unusual small-looking
   capital "A" from the Great Vibes font.
*/

.name-normal {
    font-family:"Poppins",sans-serif;

    font-size:.85em;

    font-weight:500;

    white-space:nowrap;
}


/* ---------------------------------------------------------
   FINAL MESSAGE
   --------------------------------------------------------- */

.kollam-final {
    margin-top:25px;

    font-size:15px;

    line-height:1.8;

    font-style:italic;

    color:#59666d;
}


/* ---------------------------------------------------------
   HEART
   --------------------------------------------------------- */

.kollam-heart {
    margin-top:22px;

    font-size:28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* =========================================================
   PHOTOS
   ========================================================= */

.kollam-photo {
    position:absolute;

    /*
       Reduced from 180px.

       This gives the photos a more natural
       portrait Polaroid proportion.
    */
    width:155px;
    height:220px;

    padding:8px;

    background:#fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);

    z-index:7;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* Image inside frame */

.kollam-photo img {
    width:100%;
    height:202px;

    object-fit:contain;

    display:block;

    background:#fff;
}


/* ---------------------------------------------------------
   PHOTO POSITIONS
   --------------------------------------------------------- */


/* Top left */

.kollam-photo-one {
    top:30px;
    left:60px;

    transform:rotate(-6deg);
}


/* Top right */

.kollam-photo-two {
    top:40px;
    right:60px;

    transform:rotate(6deg);
}


/* Middle left */

.kollam-photo-three {
    top:430px;
    left:45px;

    transform:rotate(5deg);
}


/* Middle right */

.kollam-photo-four {
    top:440px;
    right:45px;

    transform:rotate(-5deg);
}


/*
   Bottom photo.

   IMPORTANT:
   It is now positioned well below the
   central story card so it cannot merge
   with the final text.
*/

.kollam-photo-five {
    top:900px;

    bottom:auto;

    left:50%;

    transform:
        translateX(-50%)
        rotate(4deg);
}


/* ---------------------------------------------------------
   PHOTO HOVER
   --------------------------------------------------------- */

.kollam-photo:hover {
    z-index:10;

    box-shadow:
        0 25px 50px rgba(0,0,0,.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:800px) {

    .kollam-section {
        padding:80px 15px 120px;
    }


    .kollam-title {
        font-size:48px;
    }


    .kollam-subtitle {
        margin-bottom:35px;
    }


    /*
       Desktop uses absolute positioning.

       Mobile switches to a simple vertical
       scrapbook layout.
    */

    .kollam-memory {
        min-height:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;
    }


    /* Story card */

    .kollam-content {
        position:relative;

        top:auto;
        left:auto;

        width:100%;
        max-width:500px;

        padding:40px 25px;

        transform:rotate(0);

        order:1;
    }


    .kollam-content h2 {
        font-size:44px;
    }


    .kollam-text {
        font-size:15px;

        line-height:1.75;
    }


    .kollam-highlight {
        font-size:25px;
    }


    .kollam-final {
        font-size:14px;
    }


    /* Photos */

    .kollam-photo {
        position:relative;

        top:auto!important;
        right:auto!important;
        bottom:auto!important;
        left:auto!important;

        width:155px;
        height:215px;

        z-index:7;
    }


    .kollam-photo img {
        height:197px;
    }


    /*
       Left-side photos
    */

    .kollam-photo-one,
    .kollam-photo-three {
        align-self:flex-start;

        margin-left:8%;
    }


    /*
       Right-side photos
    */

    .kollam-photo-two,
    .kollam-photo-four {
        align-self:flex-end;

        margin-right:8%;
    }


    /*
       Bottom photo centered
    */

    .kollam-photo-five {
        align-self:center;

        margin-left:0;
    }

}
/* =========================================================
   BANGALORE SECTION
   ========================================================= */

.bangalore-section {
    background:
        linear-gradient(
            135deg,
            #fff8f3,
            #fff2f5,
            #f5f3ff
        );

    padding-top:100px;
    padding-bottom:140px;

    position:relative;
}


/* =========================================================
   BANGALORE TITLE
   ========================================================= */

.bangalore-title {
    margin:5px 0 5px;

    font-family:"Great Vibes",cursive;

    font-size:62px;

    font-weight:normal;

    color:#7d5270;

    text-align:center;
}


.bangalore-subtitle {
    margin-bottom:55px;

    font-size:15px;

    letter-spacing:1px;

    color:#786673;

    text-align:center;
}


/* =========================================================
   BANGALORE MEMORY AREA
   ========================================================= */

.bangalore-memory {
    position:relative;

    width:100%;

    max-width:1150px;

    min-height:1650px;

    margin:0 auto;
}


/* =========================================================
   BANGALORE STORY CARD
   ========================================================= */

.bangalore-content {
    position:absolute;

    z-index:5;

    width:530px;

    padding:45px 45px;

    background:rgba(255,255,255,.97);

    border-radius:24px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.11);

    text-align:center;

    top:35px;

    left:50%;

    transform:
        translateX(-50%)
        rotate(1deg);
}


/* =========================================================
   BANGALORE STORY HEADING
   ========================================================= */

.bangalore-content h2 {
    margin:8px 0 18px;

    font-family:"Great Vibes",cursive;

    font-size:52px;

    font-weight:normal;

    color:#7d5270;
}


/* =========================================================
   BANGALORE DIVIDER
   ========================================================= */

.bangalore-divider {
    margin:18px 0;

    font-size:25px;
}


/* =========================================================
   BANGALORE STORY TEXT
   ========================================================= */

.bangalore-text {
    font-size:15px;

    line-height:1.8;

    color:#5f5660;

    margin-bottom:18px;
}


/* =========================================================
   FAMILY NAMES
   ========================================================= */

.bangalore-family-names {
    font-weight:500;

    color:#7d5270;
}


/* =========================================================
   PLAYFUL JEALOUSY
   ========================================================= */

.bangalore-highlight {
    margin:27px 0;

    padding:15px 10px;

    font-family:"Great Vibes",cursive;

    font-size:28px;

    line-height:1.5;

    color:#a04d75;
}


/* =========================================================
   FINAL BANGALORE MESSAGE
   ========================================================= */

.bangalore-final {
    margin-top:25px;

    font-family:"Great Vibes",cursive;

    font-size:29px;

    line-height:1.5;

    color:#7d5270;
}


/* =========================================================
   FAMILY ENDING
   ========================================================= */

.bangalore-family-ending {
    margin-top:20px;

    font-size:15px;

    line-height:1.8;

    color:#5f5660;
}


/* =========================================================
   BANGALORE HEART
   ========================================================= */

.bangalore-heart {
    margin-top:22px;

    font-size:28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* =========================================================
   BANGALORE PHOTOS
   ========================================================= */

.bangalore-photo {
    position:absolute;

    width:175px;

    height:220px;

    padding:8px;

    background:#fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.17);

    z-index:7;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* =========================================================
   BANGALORE PHOTO IMAGE
   ========================================================= */

.bangalore-photo img {
    width:100%;

    height:178px;

    object-fit:contain;

    display:block;

    background:#fff;
}


/* =========================================================
   BANGALORE PHOTO CAPTION
   ========================================================= */

.bangalore-photo-caption {
    margin:8px 3px 0;

    font-family:"Poppins",sans-serif;

    font-size:11px;

    line-height:1.3;

    text-align:center;

    color:#67566a;
}


/* =========================================================
   BANGALORE PHOTO POSITIONS
   ========================================================= */

.bangalore-photo-one {
    top:20px;

    left:40px;

    transform:rotate(-7deg);
}


.bangalore-photo-two {
    top:25px;

    right:40px;

    transform:rotate(6deg);
}


.bangalore-photo-three {
    top:400px;

    left:20px;

    transform:rotate(5deg);
}


.bangalore-photo-four {
    top:430px;

    right:20px;

    transform:rotate(-5deg);
}


.bangalore-photo-five {
    top:1250px;

    left:100px;

    transform:rotate(-5deg);
}


.bangalore-photo-six {
    top:1280px;

    right:90px;

    transform:rotate(6deg);
}


/* =========================================================
   BANGALORE PHOTO HOVER
   ========================================================= */

.bangalore-photo:hover {
    z-index:10;

    box-shadow:
        0 25px 50px rgba(0,0,0,.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* =========================================================
   MOOKAMBIKA SECTION
   ========================================================= */

.mookambika-section {
    background:
        linear-gradient(
            135deg,
            #fffaf3,
            #f7f4ed,
            #f5f2f8
        );

    padding-top:100px;
    padding-bottom:150px;

    position:relative;
}


/* =========================================================
   MOOKAMBIKA TITLE
   ========================================================= */

.mookambika-title {
    margin:5px 0 5px;

    font-family:"Great Vibes",cursive;

    font-size:62px;

    font-weight:normal;

    color:#8b6a4b;

    text-align:center;
}


.mookambika-subtitle {
    margin-bottom:55px;

    font-size:15px;

    letter-spacing:1px;

    color:#756b60;

    text-align:center;
}


/* =========================================================
   MOOKAMBIKA MEMORY AREA
   ========================================================= */

.mookambika-memory {
    position:relative;

    width:100%;

    max-width:1150px;

    min-height:1650px;

    margin:0 auto;
}


/* =========================================================
   MOOKAMBIKA STORY CARD
   ========================================================= */

.mookambika-content {
    position:absolute;

    z-index:5;

    width:520px;

    padding:45px 45px;

    background:rgba(255,255,255,.97);

    border-radius:24px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.10);

    text-align:center;

    top:35px;

    left:50%;

    transform:
        translateX(-50%)
        rotate(-1deg);
}


/* =========================================================
   MOOKAMBIKA STORY HEADING
   ========================================================= */

.mookambika-content h2 {
    margin:8px 0 12px;

    font-family:"Great Vibes",cursive;

    font-size:52px;

    font-weight:normal;

    color:#8b6a4b;
}


/* =========================================================
   DATE
   ========================================================= */

.mookambika-date {
    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#9a8063;

    margin-bottom:10px;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.mookambika-divider {
    margin:20px 0;

    font-size:25px;
}


/* =========================================================
   STORY TEXT
   ========================================================= */

.mookambika-text {
    font-size:15px;

    line-height:1.8;

    color:#625b52;

    margin-bottom:18px;
}


/* =========================================================
   FINAL HIGHLIGHT
   ========================================================= */

.mookambika-highlight {
    margin-top:28px;

    font-family:"Great Vibes",cursive;

    font-size:29px;

    line-height:1.55;

    color:#8b6a4b;
}


/* =========================================================
   MOOKAMBIKA HEART
   ========================================================= */

.mookambika-heart {
    margin-top:22px;

    font-size:28px;

    animation:
        glowingHeart 2s ease-in-out infinite;
}


/* =========================================================
   MOOKAMBIKA PHOTOS
   ========================================================= */

.mookambika-photo {
    position:absolute;

    width:175px;

    height:220px;

    padding:8px;

    background:#fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);

    z-index:7;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* =========================================================
   MOOKAMBIKA PHOTO IMAGE
   ========================================================= */

.mookambika-photo img {
    width:100%;

    height:178px;

    object-fit:contain;

    display:block;

    background:#fff;
}


/* =========================================================
   MOOKAMBIKA PHOTO CAPTION
   ========================================================= */

.mookambika-photo-caption {
    margin:8px 3px 0;

    font-family:"Poppins",sans-serif;

    font-size:11px;

    line-height:1.3;

    text-align:center;

    color:#6b6257;
}


/* =========================================================
   MOOKAMBIKA PHOTO POSITIONS
   ========================================================= */

.mookambika-photo-one {
    top:20px;

    left:45px;

    transform:rotate(-6deg);
}


.mookambika-photo-two {
    top:25px;

    right:45px;

    transform:rotate(6deg);
}


.mookambika-photo-three {
    top:430px;

    left:25px;

    transform:rotate(5deg);
}


.mookambika-photo-four {
    top:450px;

    right:25px;

    transform:rotate(-5deg);
}


.mookambika-photo-five {
    top:900px;

    left:95px;

    transform:rotate(-5deg);
}


.mookambika-photo-six {
    top:925px;

    right:95px;

    transform:rotate(5deg);
}


/*
   Final Diya photo.

   Kept well below the story so it does
   not merge with the highlighted text.
*/

.mookambika-photo-seven {
    top:1390px;

    left:50%;

    transform:
        translateX(-50%)
        rotate(3deg);
}


/* =========================================================
   MOOKAMBIKA PHOTO HOVER
   ========================================================= */

.mookambika-photo:hover {
    z-index:10;

    box-shadow:
        0 25px 50px rgba(0,0,0,.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:800px) {


    /* =====================================================
       BANGALORE MOBILE
       ===================================================== */

    .bangalore-section {
        padding:80px 15px 120px;
    }


    .bangalore-title {
        font-size:48px;
    }


    .bangalore-subtitle {
        margin-bottom:35px;
    }


    .bangalore-memory {

        min-height:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;
    }


    .bangalore-content {

        position:relative;

        top:auto;

        left:auto;

        width:100%;

        max-width:500px;

        padding:40px 25px;

        transform:rotate(0);

        order:1;
    }


    .bangalore-content h2 {
        font-size:44px;
    }


    .bangalore-text {
        font-size:15px;

        line-height:1.75;
    }


    .bangalore-highlight {
        font-size:25px;
    }


    .bangalore-final {
        font-size:26px;
    }


    .bangalore-family-ending {
        font-size:14px;
    }


    .bangalore-photo {

        position:relative;

        top:auto!important;

        right:auto!important;

        bottom:auto!important;

        left:auto!important;

        width:165px;

        height:215px;

        z-index:7;
    }


    .bangalore-photo img {

        width:100%;

        height:173px;

        object-fit:contain;

        display:block;

        background:#fff;
    }


    .bangalore-photo-caption {

        margin:7px 3px 0;

        font-size:10.5px;

        line-height:1.3;

        text-align:center;
    }


    .bangalore-photo-one,
    .bangalore-photo-three,
    .bangalore-photo-five {

        align-self:flex-start;

        margin-left:8%;
    }


    .bangalore-photo-two,
    .bangalore-photo-four,
    .bangalore-photo-six {

        align-self:flex-end;

        margin-right:8%;
    }


    /* =====================================================
       MOOKAMBIKA MOBILE
       ===================================================== */

    .mookambika-section {
        padding:80px 15px 120px;
    }


    .mookambika-title {
        font-size:48px;
    }


    .mookambika-subtitle {
        margin-bottom:35px;
    }


    .mookambika-memory {

        min-height:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;
    }


    .mookambika-content {

        position:relative;

        top:auto;

        left:auto;

        width:100%;

        max-width:500px;

        padding:40px 25px;

        transform:rotate(0);

        order:1;
    }


    .mookambika-content h2 {
        font-size:44px;
    }


    .mookambika-text {
        font-size:15px;

        line-height:1.75;
    }


    .mookambika-highlight {
        font-size:26px;
    }


    .mookambika-photo {

        position:relative;

        top:auto!important;

        right:auto!important;

        bottom:auto!important;

        left:auto!important;

        width:165px;

        height:215px;

        z-index:7;
    }


    .mookambika-photo img {

        width:100%;

        height:173px;

        object-fit:contain;

        display:block;

        background:#fff;
    }


    .mookambika-photo-caption {

        margin:7px 3px 0;

        font-size:10.5px;

        line-height:1.3;

        text-align:center;
    }


    .mookambika-photo-one,
    .mookambika-photo-three,
    .mookambika-photo-five {

        align-self:flex-start;

        margin-left:8%;
    }


    .mookambika-photo-two,
    .mookambika-photo-four,
    .mookambika-photo-six {

        align-self:flex-end;

        margin-right:8%;
    }


    .mookambika-photo-seven {

        align-self:center;

        margin-left:0;
    }

}
/* =========================================
   SREETHU SECTION
========================================= */

.sreethu-section {
    background:
        linear-gradient(
            135deg,
            #fff7f8,
            #fdf1f7,
            #f5f1ff
        );
    padding-top:100px;
    padding-bottom:150px;
    position:relative;
}

.sreethu-title {
    margin:5px 0 5px;
    font-family:"Great Vibes",cursive;
    font-size:62px;
    font-weight:normal;
    color:#a34772;
    text-align:center;
}

.sreethu-subtitle {
    margin-bottom:55px;
    font-size:15px;
    letter-spacing:1px;
    color:#806371;
    text-align:center;
}

.sreethu-memory {
    position:relative;
    width:100%;
    max-width:1150px;
    min-height:1600px;
    margin:0 auto;
}


/* =========================================
   MAIN STORY CARD
========================================= */

.sreethu-content {
    position:absolute;
    z-index:5;

    width:530px;

    padding:45px 45px;

    background:rgba(255,255,255,.97);

    border-radius:24px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.11);

    text-align:center;

    top:35px;
    left:50%;

    transform:
        translateX(-50%)
        rotate(-1deg);
}

.sreethu-content h2 {
    margin:8px 0 12px;

    font-family:"Great Vibes",cursive;

    font-size:52px;
    font-weight:normal;

    color:#a34772;
}

.sreethu-divider {
    margin:18px 0 25px;

    font-size:24px;
}

.sreethu-text {
    font-size:15px;
    line-height:1.8;

    color:#625761;

    margin-bottom:18px;
}

.sreethu-highlight {
    margin:25px 0;

    padding:12px 10px;

    font-family:"Great Vibes",cursive;

    font-size:28px;
    line-height:1.5;

    color:#a34772;
}

.bond-line {
    margin-top:30px;
    margin-bottom:30px;
}

.sreethu-final {
    margin-top:30px;

    font-family:"Great Vibes",cursive;

    font-size:32px;
    line-height:1.5;

    color:#a34772;
}

.sreethu-heart {
    margin-top:22px;
    margin-bottom:35px;

    font-size:28px;

    animation:glowingHeart 2s ease-in-out infinite;
}


/* =========================================
   PHOTOS
========================================= */

.sreethu-photo {
    position:absolute;

    width:175px;
    height:220px;

    padding:8px;

    background:#fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.17);

    z-index:7;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.sreethu-photo img {
    width:100%;
    height:204px;

    object-fit:contain;

    display:block;

    background:#fff;
}


/* Top photos */

.sreethu-photo-one {
    top:20px;
    left:40px;

    transform:rotate(-7deg);
}

.sreethu-photo-two {
    top:25px;
    right:40px;

    transform:rotate(6deg);
}


/* Middle photos */

.sreethu-photo-three {
    top:430px;
    left:20px;

    transform:rotate(5deg);
}

.sreethu-photo-four {
    top:450px;
    right:20px;

    transform:rotate(-5deg);
}


/* Bottom photos */

.sreethu-photo-five {
    top:1120px;
    left:100px;

    transform:rotate(-5deg);
}

.sreethu-photo-six {
    top:1145px;
    right:90px;

    transform:rotate(6deg);
}


/* Hover */

.sreethu-photo:hover {
    z-index:10;

    box-shadow:
        0 25px 50px rgba(0,0,0,.23);

    transform:
        rotate(0deg)
        scale(1.06);
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:800px) {

    .sreethu-section {
        padding:80px 15px 120px;
    }

    .sreethu-title {
        font-size:48px;
    }

    .sreethu-subtitle {
        margin-bottom:35px;
    }

    .sreethu-memory {

        min-height:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;
    }

    .sreethu-content {

        position:relative;

        top:auto;
        left:auto;

        width:100%;
        max-width:500px;

        padding:40px 25px;

        transform:rotate(0);

        order:1;
    }

    .sreethu-content h2 {
        font-size:44px;
    }

    .sreethu-text {
        font-size:15px;
        line-height:1.75;
    }

    .sreethu-highlight {
        font-size:25px;
    }

    .sreethu-final {
        font-size:28px;
    }

    .sreethu-photo {

        position:relative;

        top:auto!important;
        right:auto!important;
        bottom:auto!important;
        left:auto!important;

        width:165px;
        height:215px;

        z-index:7;
    }

    .sreethu-photo img {

        width:100%;
        height:173px;

        object-fit:contain;

        display:block;

        background:#fff;
    }

    .sreethu-photo-one,
    .sreethu-photo-three,
    .sreethu-photo-five {

        align-self:flex-start;

        margin-left:8%;
    }

    .sreethu-photo-two,
    .sreethu-photo-four,
    .sreethu-photo-six {

        align-self:flex-end;

        margin-right:8%;
    }
}
/* =========================================
   SREETHU NEXT BUTTON FIX
========================================= */

.sreethu-section .story-next-button {
    position: relative;
    z-index: 20;

    display: block;

    margin: 75px auto 0;

    padding: 14px 28px;

    background: rgba(255, 255, 255, 0.95);

    color: #a34772;

    border: 2px solid #d45b88;

    border-radius: 30px;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(163, 71, 114, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.sreethu-section .story-next-button:hover {
    background: #fff;

    color: #8f315d;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(163, 71, 114, 0.22);
}

.sreethu-section .story-next-button span {
    margin-left: 8px;
    font-size: 16px;
}
/* =========================================
   KIKU & KIKI / CREATIVE SECTION
========================================= */

.creative-section {
    background:
        linear-gradient(
            135deg,
            #fff8f4,
            #fff0f6,
            #f4f0ff
        );

    padding-top:110px;
    padding-bottom:150px;
    position:relative;
}

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

.creative-chapter {
    color:#b14f79;
}

.creative-title {
    margin:8px 0 15px;

    font-family:"Great Vibes",cursive;
    font-size:62px;
    font-weight:normal;
    line-height:1.2;

    color:#a34772;
}

.creative-intro {
    max-width:650px;

    margin:0 auto 55px;

    font-size:16px;
    line-height:1.8;

    color:#725866;
}


/* =========================================
   KIKU & KIKI FEATURE IMAGE
========================================= */

.kiku-kiki-feature {
    position:relative;

    width:100%;
    max-width:900px;

    margin:0 auto 70px;

    padding:12px;

    background:#fff;

    border-radius:28px;

    box-shadow:
        0 25px 65px rgba(0,0,0,.14),
        0 0 0 8px rgba(255,255,255,.65);
}

.kiku-kiki-feature img {
    width:100%;
    height:auto;

    display:block;

    border-radius:20px;
}


/* =========================================
   DECORATIVE SPARKLES
========================================= */

.creative-spark {
    position:absolute;

    z-index:5;

    font-size:30px;

    color:#d45b88;

    animation:
        creativeSpark 2.5s ease-in-out infinite;

    pointer-events:none;
}

.spark-one {
    top:-20px;
    left:8%;
}

.spark-two {
    top:12%;
    right:-18px;

    animation-delay:.5s;
}

.spark-three {
    bottom:8%;
    left:-18px;

    animation-delay:1s;
}

.spark-four {
    bottom:-20px;
    right:10%;

    animation-delay:1.5s;
}

@keyframes creativeSpark {

    0%,100% {
        transform:scale(1) rotate(0deg);
        opacity:.55;
    }

    50% {
        transform:scale(1.35) rotate(15deg);
        opacity:1;
    }
}


/* =========================================
   CREATIVE STORY CARD
========================================= */

.creative-story-card {
    position:relative;

    width:100%;
    max-width:650px;

    margin:0 auto;

    padding:55px 50px;

    background:rgba(255,255,255,.97);

    border-radius:26px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.11);

    text-align:center;
}

.creative-story-card p {
    margin:0 0 22px;

    font-size:15px;
    line-height:1.9;

    color:#625761;
}


/* =========================================
   IMPORTANT LINES
========================================= */

.creative-question {
    margin:30px 0 !important;

    font-family:"Great Vibes",cursive;

    font-size:32px !important;
    line-height:1.5 !important;

    color:#d0527e !important;
}

.creative-emphasis {
    margin-top:30px !important;

    font-size:18px !important;

    font-weight:500;

    color:#8f4d68 !important;
}

.creative-big-line {
    margin:28px 0 35px !important;

    font-family:"Great Vibes",cursive;

    font-size:34px !important;
    line-height:1.5 !important;

    color:#a34772 !important;
}

.creative-request {
    margin:30px 0 !important;

    font-family:"Great Vibes",cursive;

    font-size:29px !important;
    line-height:1.55 !important;

    color:#a34772 !important;
}

.creative-final {
    margin-top:35px !important;
    margin-bottom:8px !important;
}

.creative-shine {
    margin-bottom:0 !important;

    font-family:"Great Vibes",cursive;

    font-size:32px !important;
    line-height:1.5 !important;

    color:#d0527e !important;
}


/* =========================================
   YOUTUBE CHANNEL CARD
========================================= */

.channel-card {
    width:100%;
    max-width:600px;

    margin:75px auto 0;

    padding:45px 35px 50px;

    background:rgba(255,255,255,.96);

    border-radius:28px;

    box-shadow:
        0 18px 50px rgba(0,0,0,.10);

    text-align:center;
}

.channel-small {
    margin:0 0 10px;

    font-size:12px;
    font-weight:600;

    letter-spacing:3px;
    text-transform:uppercase;

    color:#b14f79;
}

.channel-card h3 {
    margin:8px 0 15px;

    font-family:"Great Vibes",cursive;

    font-size:48px;
    font-weight:normal;

    color:#a34772;
}

.channel-tagline {
    margin:0 0 25px;

    font-family:"Great Vibes",cursive;

    font-size:25px;
    line-height:1.5;

    color:#80606d;
}

.channel-name {
    margin:0 0 30px;

    font-size:16px;
    line-height:1.7;

    color:#625761;
}

.channel-name span {
    font-family:"Great Vibes",cursive;

    font-size:30px;

    color:#a34772;
}


/* =========================================
   YOUTUBE BUTTON
========================================= */

.channel-button {
    display:inline-block;

    padding:15px 28px;

    border:2px solid #d45b88;
    border-radius:30px;

    background:#fff;

    color:#a34772;

    text-decoration:none;

    font-size:14px;
    font-weight:500;

    box-shadow:
        0 8px 25px rgba(163,71,114,.12);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.channel-button span {
    margin-left:8px;
    font-size:17px;
}

.channel-button:hover {
    background:#fff7fa;

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(163,71,114,.20);
}


/* =========================================
   CLOSING
========================================= */

.creative-closing {
    max-width:650px;

    margin:70px auto 0;

    text-align:center;
}

.creative-closing p {
    margin-bottom:15px;

    font-size:16px;
    line-height:1.8;

    color:#675761;
}

.creative-closing-highlight {
    margin-top:25px;

    font-family:"Great Vibes",cursive;

    font-size:32px !important;
    line-height:1.5 !important;

    color:#a34772 !important;
}


/* =========================================
   NEXT BUTTON
========================================= */

.creative-next-button {
    margin-top:65px;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px) {

    .creative-section {
        padding:80px 15px 120px;
    }

    .creative-title {
        font-size:46px;
    }

    .creative-intro {
        font-size:15px;
        margin-bottom:35px;
    }


    /* FEATURE IMAGE */

    .kiku-kiki-feature {
        width:100%;

        margin-bottom:45px;

        padding:7px;

        border-radius:20px;
    }

    .kiku-kiki-feature img {
        border-radius:14px;
    }

    .creative-spark {
        font-size:22px;
    }

    .spark-one {
        top:-14px;
    }

    .spark-two {
        right:-10px;
    }

    .spark-three {
        left:-10px;
    }

    .spark-four {
        bottom:-14px;
    }


    /* STORY */

    .creative-story-card {
        padding:40px 25px;
    }

    .creative-story-card p {
        font-size:15px;
        line-height:1.8;
    }

    .creative-question {
        font-size:28px !important;
    }

    .creative-emphasis {
        font-size:17px !important;
    }

    .creative-big-line {
        font-size:29px !important;
    }

    .creative-request {
        font-size:27px !important;
    }

    .creative-shine {
        font-size:29px !important;
    }


    /* CHANNEL */

    .channel-card {
        padding:40px 25px;
        margin-top:55px;
    }

    .channel-card h3 {
        font-size:42px;
    }

    .channel-tagline {
        font-size:23px;
    }

    .channel-name span {
        font-size:27px;
    }


    /* CLOSING */

    .creative-closing {
        margin-top:55px;
    }

    .creative-closing-highlight {
        font-size:29px !important;
    }

}
/* =========================================
   FINAL MESSAGE
========================================= */

.final-message-section {
    background:
        linear-gradient(
            135deg,
            #fff9f7,
            #fff0f5,
            #f5f1ff
        );

    padding-top:120px;
    padding-bottom:160px;

    position:relative;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.final-message-content {
    width:100%;
    max-width:760px;

    margin:0 auto;

    text-align:center;
}

.final-chapter {
    color:#b14f79;
}


/* =========================================
   TITLE
========================================= */

.final-message-content h2 {
    margin:10px 0 50px;

    font-family:"Great Vibes",cursive;

    font-size:64px;
    font-weight:normal;

    line-height:1.2;

    color:#a34772;
}


/* =========================================
   LETTER
========================================= */

.final-letter {
    max-width:650px;

    margin:0 auto;

    padding:50px 50px 35px;

    background:rgba(255,255,255,.96);

    border-radius:28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.10);
}

.final-letter p {
    margin:0 0 24px;

    font-size:15px;

    line-height:1.9;

    color:#625761;
}

.final-letter p:last-child {
    margin-bottom:0;
}


/* =========================================
   BELIEF
========================================= */

.final-belief {
    margin:30px 0 !important;

    font-family:"Great Vibes",cursive;

    font-size:40px !important;

    line-height:1.4 !important;

    color:#d0527e !important;
}


/* =========================================
   PHOTO
========================================= */

.final-photo-wrap {
    width:100%;

    margin:70px auto 65px;

    display:flex;

    justify-content:center;
}

.final-photo-frame {
    width:520px;

    max-width:90%;

    padding:12px;

    background:#fff;

    border-radius:8px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.17);

    transform:rotate(-1.5deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.final-photo-frame:hover {
    transform:rotate(0deg) scale(1.02);

    box-shadow:
        0 25px 65px rgba(0,0,0,.21);
}

.final-photo-frame img {
    width:100%;

    height:auto;

    display:block;

    border-radius:3px;
}


/* =========================================
   DREAMS
========================================= */

.final-dreams {
    max-width:650px;

    margin:0 auto;

    padding:45px 50px;

    background:rgba(255,255,255,.94);

    border-radius:28px;

    box-shadow:
        0 18px 50px rgba(0,0,0,.09);
}

.final-dreams p {
    margin:0 0 24px;

    font-size:15px;

    line-height:1.9;

    color:#625761;
}

.final-belief-intro {
    margin-bottom:10px !important;

    font-family:"Great Vibes",cursive;

    font-size:27px !important;

    color:#80606d !important;
}

.final-dream-line {
    margin:10px 0 20px !important;

    font-family:"Great Vibes",cursive;

    font-size:34px !important;

    line-height:1.55 !important;

    color:#a34772 !important;
}

.final-we-get-there {
    margin:10px 0 35px !important;

    font-family:"Great Vibes",cursive;

    font-size:43px !important;

    line-height:1.3 !important;

    color:#d0527e !important;
}


/* =========================================
   FINAL ENDING
========================================= */

.final-ending {
    max-width:650px;

    margin:70px auto 0;

    text-align:center;
}

.final-ending p {
    margin-bottom:20px;

    font-size:16px;

    line-height:1.8;

    color:#675761;
}

.final-ending-highlight {
    margin-top:30px !important;

    font-family:"Great Vibes",cursive;

    font-size:34px !important;

    line-height:1.5 !important;

    color:#a34772 !important;
}


/* =========================================
   FINAL STATEMENT
========================================= */

.final-statement {
    margin:75px auto 0;

    text-align:center;
}

.final-statement p {
    margin:0;

    font-family:"Great Vibes",cursive;

    font-size:36px;

    line-height:1.45;

    color:#a34772;
}

.final-statement-highlight {
    margin-top:12px !important;

    font-size:45px !important;

    color:#d0527e !important;
}


/* =========================================
   DIVIDER
========================================= */

.final-divider {
    margin:65px auto 35px;

    font-size:20px;

    color:#c05b82;

    letter-spacing:4px;
}


/* =========================================
   THIS IS ONLY THE BEGINNING
========================================= */

.final-beginning {
    margin:0 auto 40px;

    font-family:"Great Vibes",cursive;

    font-size:52px;

    font-weight:normal;

    line-height:1.4;

    color:#a34772;
}


/* =========================================
   BIRTHDAY
========================================= */

.final-birthday {
    margin:0 0 30px;

    font-family:"Great Vibes",cursive;

    font-size:34px;

    line-height:1.5;

    color:#d0527e;
}


/* =========================================
   SIGNATURE
========================================= */

.final-signature {
    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#675761;
}

.final-signature span {
    display:inline-block;

    margin-top:5px;

    font-family:"Great Vibes",cursive;

    font-size:38px;

    color:#a34772;
}


/* =========================================
   P.S.
========================================= */

.final-ps {
    max-width:500px;

    margin:60px auto 0;

    font-size:13px;

    font-style:italic;

    line-height:1.7;

    color:#806a75;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px) {

    .final-message-section {
        padding:80px 15px 120px;
    }

    .final-message-content h2 {
        font-size:48px;

        margin-bottom:35px;
    }

    .final-letter {
        padding:38px 25px 30px;
    }

    .final-letter p {
        font-size:15px;

        line-height:1.8;
    }

    .final-belief {
        font-size:34px !important;
    }


    /* PHOTO */

    .final-photo-wrap {
        margin:50px auto 50px;
    }

    .final-photo-frame {
        width:100%;

        max-width:500px;

        padding:8px;

        transform:rotate(-1deg);
    }


    /* DREAMS */

    .final-dreams {
        padding:35px 25px;
    }

    .final-dreams p {
        font-size:15px;

        line-height:1.8;
    }

    .final-dream-line {
        font-size:30px !important;
    }

    .final-we-get-there {
        font-size:38px !important;
    }


    /* ENDING */

    .final-ending {
        margin-top:55px;
    }

    .final-ending p {
        font-size:15px;
    }

    .final-ending-highlight {
        font-size:30px !important;
    }


    /* FINAL STATEMENT */

    .final-statement {
        margin-top:60px;
    }

    .final-statement p {
        font-size:31px;
    }

    .final-statement-highlight {
        font-size:40px !important;
    }


    /* FINAL */

    .final-divider {
        margin-top:55px;
    }

    .final-beginning {
        font-size:42px;
    }

    .final-birthday {
        font-size:30px;
    }

    .final-signature span {
        font-size:34px;
    }

    .final-ps {
        margin-top:45px;
        font-size:12px;
    }

}