/* ===============================
   GENERAL
================================ */

:root {

    --background: #f8f3ed;
    --card: #fffaf5;
    --text: #2d2926;
    --soft-text: #746b64;

    --pink: #e8b4b8;
    --dark-pink: #bb777b;

    --green: #a7b7a1;
    --cream: #f0dfc8;
    --brown: #9a7563;

    --border: #ded3c9;

    --shadow:
        0 15px 40px rgba(59, 45, 37, 0.08);

}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}



body {

    font-family: "DM Sans", sans-serif;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(232, 180, 184, 0.18),
            transparent 22%
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(167, 183, 161, 0.14),
            transparent 25%
        ),
        var(--background);

    color: var(--text);

    line-height: 1.7;

}



a {
    color: inherit;
    text-decoration: none;
}



img {
    width: 100%;
    display: block;
}



::selection {
    background: var(--pink);
    color: #fff;
}



.section {
    max-width: 1200px;
    margin: auto;
    padding: 110px 8%;
}



.section-heading {
    margin-bottom: 55px;
}



.section-heading > p,
.small-text {

    text-transform: uppercase;

    letter-spacing: 2.5px;

    font-size: 0.75rem;

    font-weight: 600;

    color: var(--dark-pink);

}



.section-heading h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(2.5rem, 5vw, 4.8rem);

    line-height: 1.05;

    margin-top: 8px;

}



.section-heading em {

    color: var(--dark-pink);

    font-weight: 600;

}



/* ===============================
   NAVBAR
================================ */

.navbar {

    position: sticky;
    top: 0;

    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 7%;

    background:
        rgba(248, 243, 237, 0.88);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(222, 211, 201, 0.6);

}



.logo {

    font-family:
        "Playfair Display", serif;

    font-size: 1.6rem;

    font-weight: 600;

}



.logo span {
    color: var(--dark-pink);
}



.nav-links {
    display: flex;
    gap: 32px;
}



.nav-links a {

    font-size: 0.9rem;

    color: var(--soft-text);

    position: relative;

}



.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: var(--dark-pink);

    transition: 0.3s;

}



.nav-links a:hover::after {
    width: 100%;
}



.theme-btn {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: var(--card);

    cursor: pointer;

    color: var(--text);

}



/* ===============================
   HERO
================================ */

.hero {

    min-height: 90vh;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    align-items: center;

    gap: 80px;

    max-width: 1300px;

    margin: auto;

    padding: 80px 8% 100px;

}



.hero h1 {

    font-family:
        "Playfair Display", serif;

    font-size:
        clamp(4rem, 8vw, 7rem);

    line-height: 0.95;

    margin:
        20px 0 22px;

}



.hero h1 span {

    display: block;

    font-style: italic;

    color: var(--dark-pink);

}



.hero h2 {

    font-weight: 500;

    font-size: 1rem;

    letter-spacing: 1px;

    color: rgb(133, 110, 197) 

    margin-bottom: 25px;

}


.hero-description {

    max-width: 620px;

    color: rgb(168, 104, 194)

    font-size: 1.05rem;

}



.hero-buttons {

    margin-top: 35px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}



.main-btn,
.secondary-btn {

    padding:
        13px 24px;

    border-radius:
        999px;

    font-size:
        0.9rem;

    transition:
        0.3s;

}



.main-btn {

    background:
        var(--text);

    color:
        var(--background);

}



.secondary-btn {

    border:
        1px solid var(--border);

    background:
        var(--card);

}



.main-btn:hover,
.secondary-btn:hover {

    transform:
        translateY(-4px);

}



.hero-image {

    position:
        relative;

    display:
        flex;

    justify-content:
        center;

}



.polaroid {

    width:
        min(380px, 100%);

    background:
        #fff;

    padding:
        15px 15px 28px;

    box-shadow:
        0 25px 60px
        rgba(55, 40, 34, 0.2);

    transform:
        rotate(4deg);

    transition:
        0.4s;

}



.polaroid:hover {

    transform:
        rotate(0)
        scale(1.02);

}



.polaroid img {

    aspect-ratio:
        4 / 5;

    object-fit:
        cover;

}



.polaroid p {

    margin-top:
        18px;

    text-align:
        center;

    font-family:
        "Playfair Display",
        serif;

    font-style:
        italic;

}



.tape {

    width:
        100px;

    height:
        28px;

    background:
        rgba(
            232,
            180,
            184,
            0.55
        );

    position:
        absolute;

    top:
        -8px;

    left:
        50%;

    transform:
        translateX(-50%)
        rotate(-5deg);

}



/* ===============================
   QUICK INFO
================================ */

.quick-info {

    max-width:
        1150px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid
        var(--border);

    border-radius:
        25px;

    overflow:
        hidden;

    background:
        rgba(
            255,
            250,
            245,
            0.65
        );

}



.quick-info div {

    padding:
        30px;

    border-right:
        1px solid
        var(--border);

}



.quick-info div:last-child {
    border-right: none;
}



.quick-info span {

    font-size:
        1.5rem;

}



.quick-info p {

    font-size:
        0.75rem;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

    color:
        var(--soft-text);

    margin-top:
        6px;

}



.quick-info strong {

    font-size:
        0.9rem;

}



/* ===============================
   ABOUT
================================ */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1.5fr 1fr;

    gap:
        25px;

}



.about-card {

    padding:
        40px;

    border:
        1px solid
        var(--border);

    border-radius:
        28px;

    background:
        var(--card);

    box-shadow:
        var(--shadow);

}



.big-card {

    grid-row:
        span 2;

}



.card-icon {

    font-size:
        2rem;

}



.about-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        2rem;

    margin:
        18px 0;

}



.about-card p {

    color:
        var(--soft-text);

    margin-bottom:
        15px;

}



.note-card {

    transform:
        rotate(1deg);

    background:
        #f6e7d5;

}



.handwritten {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        1.4rem;

    font-style:
        italic;

    color:
        var(--text)
        !important;

}



.note-card ul {

    list-style:
        none;

}



.note-card li {

    margin:
        8px 0;

    color:
        var(--soft-text);

}



.quote-card {

    background:
        var(--green);

}



.quote-card span {

    font-family:
        serif;

    font-size:
        4rem;

    line-height:
        1;

}



.quote-card p {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        1.4rem;

    color:
        var(--text);

}



/* ===============================
   INTERESTS
================================ */

.interest-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        22px;

}



.interest-card {

    padding:
        35px;

    border-radius:
        24px;

    border:
        1px solid
        var(--border);

    background:
        var(--card);

    transition:
        0.35s;

}



.interest-card:hover {

    transform:
        translateY(-10px)
        rotate(-1deg);

    box-shadow:
        var(--shadow);

}



.interest-icon {

    width:
        55px;

    height:
        55px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        16px;

    background:
        var(--cream);

    font-size:
        1.6rem;

}



.interest-card h3 {

    font-family:
        "Playfair Display",
        serif;

    margin:
        20px 0 10px;

    font-size:
        1.5rem;

}



.interest-card p {

    color:
        var(--soft-text);

    font-size:
        0.9rem;

}



/* ===============================
   GALLERY
================================ */

.gallery-intro {

    max-width:
        650px;

    color:
        var(--soft-text);

    margin:
        -30px 0 45px;

}



.masonry {

    columns:
        3;

    column-gap:
        20px;

}



.pin {

    break-inside:
        avoid;

    background:
        var(--card);

    margin-bottom:
        20px;

    border-radius:
        24px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);

    transition:
        0.35s;

}



.pin:hover {

    transform:
        translateY(-6px);

}



.pin img {

    min-height:
        250px;

    object-fit:
        cover;

}



.pin:nth-child(2) img,
.pin:nth-child(5) img {

    height:
        420px;

}



.pin:nth-child(3) img {

    height:
        320px;

}



.pin-text {

    padding:
        18px 20px 22px;

}



.pin-text h3 {

    font-family:
        "Playfair Display",
        serif;

}



.pin-text p {

    color:
        var(--soft-text);

    font-size:
        0.85rem;

}



/* ===============================
   HOBBIES
================================ */

.hobby-container {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        20px;

}



.hobby {

    padding:
        35px;

    border-top:
        1px solid
        var(--border);

    transition:
        0.3s;

}



.hobby:hover {

    padding-left:
        48px;

}



.hobby span {

    color:
        var(--dark-pink);

    font-size:
        0.8rem;

}



.hobby h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        2rem;

    margin:
        8px 0;

}



.hobby p {

    color:
        var(--soft-text);

}



/* ===============================
   DREAMS
================================ */

.dream-section {

    padding:
        60px 8%;

}



.dream-card {

    max-width:
        1050px;

    margin:
        auto;

    background:
        var(--text);

    color:
        var(--background);

    padding:
        80px;

    border-radius:
        35px;

    text-align:
        center;

    position:
        relative;

    overflow:
        hidden;

}



.dream-card::before {

    content:
        "";

    position:
        absolute;

    width:
        250px;

    height:
        250px;

    border-radius:
        50%;

    background:
        rgba(
            232,
            180,
            184,
            0.14
        );

    top:
        -90px;

    right:
        -50px;

}



.star {

    font-size:
        2.3rem;

}



.dream-card h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.3rem,
            5vw,
            4.4rem
        );

    line-height:
        1.1;

    max-width:
        760px;

    margin:
        20px auto;

}



.dream-card > p {

    max-width:
        650px;

    margin:
        auto;

    color:
        #d5cec8;

}



.dream-tags {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        35px;

}



.dream-tags span {

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );

    border-radius:
        50px;

    padding:
        8px 15px;

    font-size:
        0.8rem;

}



/* ===============================
   FAVORITES
================================ */

.favorites-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;

}



.favorite-box {

    padding:
        32px;

    border-radius:
        25px;

    border:
        1px solid
        var(--border);

    background:
        var(--card);

}



.favorite-box:nth-child(2) {

    transform:
        translateY(25px);

}



.favorite-box:nth-child(4) {

    transform:
        translateY(25px);

}



.favorite-box > span {

    font-size:
        2rem;

}



.favorite-box h3 {

    margin:
        15px 0;

    font-family:
        "Playfair Display",
        serif;

}



.favorite-box p {

    color:
        var(--soft-text);

    line-height:
        2;

}



/* ===============================
   NOW
================================ */

.now-board {

    background:
        #f1dfcc;

    border-radius:
        30px;

    padding:
        30px 45px;

}



.now-board > div {

    display:
        grid;

    grid-template-columns:
        0.5fr 1.5fr;

    align-items:
        center;

    padding:
        25px 0;

    border-bottom:
        1px dashed
        rgba(
            59,
            45,
            37,
            0.25
        );

}



.now-board > div:last-child {

    border-bottom:
        none;

}



.now-board span {

    color:
        var(--dark-pink);

    font-size:
        0.8rem;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

}



.now-board h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        1.5rem;

}



/* ===============================
   CONTACT
================================ */

.contact-section {

    text-align:
        center;

    max-width:
        950px;

    margin:
        auto;

    padding:
        130px 8%;

}



.contact-section h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            7vw,
            6rem
        );

    line-height:
        1;

    margin:
        15px 0 25px;

}



.contact-section h2 em {

    color:
        var(--dark-pink);

}



.contact-section > p {

    color:
        var(--soft-text);

}



.social-links {

    margin-top:
        40px;

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;

}



.social-links a {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        12px 18px;

    border:
        1px solid
        var(--border);

    border-radius:
        50px;

    background:
        var(--card);

    transition:
        0.3s;

}



.social-links a:hover {

    background:
        var(--text);

    color:
        var(--background);

    transform:
        translateY(-4px);

}



/* ===============================
   FOOTER
================================ */

footer {

    padding:
        30px 8%;

    display:
        flex;

    justify-content:
        space-between;

    color:
        var(--soft-text);

    border-top:
        1px solid
        var(--border);

    font-size:
        0.85rem;

}



/* ===============================
   DARK MODE
================================ */

body.dark {

    --background:
        #171514;

    --card:
        #211e1c;

    --text:
        #f1eae3;

    --soft-text:
        #b9ada3;

    --border:
        #3d3732;

    --cream:
        #46392f;

    --dark-pink:
        #e2a0a8;

    --shadow:
        0 15px 40px
        rgba(
            0,
            0,
            0,
            0.25
        );

}



body.dark .navbar {

    background:
        rgba(
            23,
            21,
            20,
            0.9
        );

}



body.dark .note-card {

    background:
        #392d25;

}



body.dark .quote-card {

    background:
        #435042;

}



body.dark .now-board {

    background:
        #332820;

}



body.dark .polaroid {

    background:
        #292522;

}



/* ===============================
   SCROLL ANIMATION
================================ */

.reveal {

    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        all 0.8s ease;

}



.reveal.active {

    opacity:
        1;

    transform:
        translateY(0);

}



/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }


    .hero {

        grid-template-columns:
            1fr;

        text-align:
            center;

        padding-top:
            60px;

    }


    .hero-description {

        margin:
            auto;

    }


    .hero-buttons {

        justify-content:
            center;

    }


    .quick-info {

        grid-template-columns:
            repeat(2, 1fr);

        margin:
            0 6%;

    }


    .quick-info div {

        border-bottom:
            1px solid
            var(--border);

    }


    .about-grid {

        grid-template-columns:
            1fr;

    }


    .big-card {

        grid-row:
            auto;

    }


    .interest-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .masonry {

        columns:
            2;

    }


    .favorites-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .favorite-box:nth-child(2),
    .favorite-box:nth-child(4) {

        transform:
            none;

    }

}



@media (max-width: 600px) {

    .section {

        padding:
            80px 6%;

    }


    .hero {

        padding:
            65px 6% 90px;

    }


    .hero h1 {

        font-size:
            3.7rem;

    }


    .quick-info {

        grid-template-columns:
            1fr;

    }


    .quick-info div {

        border-right:
            none;

    }


    .interest-grid {

        grid-template-columns:
            1fr;

    }


    .masonry {

        columns:
            1;

    }


    .hobby-container {

        grid-template-columns:
            1fr;

    }


    .favorites-grid {

        grid-template-columns:
            1fr;

    }


    .dream-card {

        padding:
            60px 25px;

    }


    .now-board {

        padding:
            20px 25px;

    }


    .now-board > div {

        grid-template-columns:
            1fr;

        gap:
            7px;

    }


    footer {

        flex-direction:
            column;

        gap:
            8px;

        text-align:
            center;

    }

}