@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --cream: #fff9fb;
    --pink: #f7dce7;
    --soft-pink: #fdf0f5;
    --rose: #b85f82;
    --dark-rose: #8f4765;
    --brown: #4a343d;
    --text: #6f5a63;
    --white: #ffffff;
    --border: #efd9e2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* NAVIGATION */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    padding: 20px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 249, 251, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--dark-rose);
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    color: var(--brown);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: var(--rose);
}

/* HERO */

.hero {
    min-height: 88vh;
    padding: 80px 7%;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;

    overflow: hidden;

    background:
        radial-gradient(circle at 90% 15%, #f7dce7 0, transparent 28%),
        radial-gradient(circle at 5% 90%, #f9eadb 0, transparent 25%),
        var(--cream);
}

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

.eyebrow,
.section-label {
    color: var(--rose);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.eyebrow {
    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--brown);
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
    color: var(--rose);
}

.hero-text {
    max-width: 590px;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 15px 27px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.primary-btn {
    color: white;
    background: var(--rose);
    box-shadow: 0 12px 28px rgba(184, 95, 130, 0.25);
}

.primary-btn:hover {
    background: var(--dark-rose);
    transform: translateY(-3px);
}

.secondary-btn {
    color: var(--rose);
    border: 1px solid var(--border);
    background: white;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    border-color: var(--rose);
}

/* HERO PLANNER */

.hero-card {
    position: relative;
    min-height: 520px;

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

.planner-preview {
    width: min(390px, 90%);
    min-height: 470px;

    padding: 45px 40px;

    position: relative;

    background: white;
    border-radius: 28px;

    border: 1px solid var(--border);

    box-shadow:
        0 30px 70px rgba(84, 46, 60, 0.13);

    transform: rotate(2deg);
}

.preview-small {
    color: var(--rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.planner-preview h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.1;
    margin: 25px 0 35px;
}

.planner-lines {
    display: flex;
    flex-direction: column;
    gap: 18px;

    color: var(--text);
}

.planner-lines span {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.preview-heart {
    position: absolute;
    bottom: 30px;
    right: 35px;

    font-size: 50px;
    color: var(--rose);
}

.floating-note {
    position: absolute;
    z-index: 2;

    padding: 12px 18px;

    border-radius: 50px;
    background: white;

    color: var(--dark-rose);
    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(80, 40, 55, 0.12);
}

.note-one {
    top: 55px;
    left: 5%;
    transform: rotate(-7deg);
}

.note-two {
    bottom: 55px;
    right: 2%;
    transform: rotate(6deg);
}

/* PRODUCTS */

.products {
    padding: 110px 7%;
    text-align: center;
    background: white;
}

.products h2,
.why-content h2,
.cta h2 {
    font-family: "Playfair Display", serif;
    color: var(--brown);
}

.products h2 {
    margin: 12px auto 15px;
    font-size: clamp(38px, 5vw, 58px);
}

.section-description {
    max-width: 600px;
    margin: 0 auto 55px;
    color: var(--text);
}

.product-grid {
    max-width: 1120px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    position: relative;

    padding: 30px;
    text-align: left;

    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 25px;

    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 45px rgba(74, 52, 61, 0.10);
}

.product-card.featured {
    background: var(--soft-pink);
    border: 2px solid #e6a8be;
}

.best-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 6px 10px;

    border-radius: 50px;
    background: var(--rose);
    color: white;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-visual {
    height: 220px;

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

    margin-bottom: 25px;

    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 20%, #f7dce7, transparent 35%),
        #fff;

    font-size: 70px;
}

.product-type {
    color: var(--rose);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.product-card > p:not(.product-type) {
    color: var(--text);
    margin-bottom: 22px;
}

.product-card a {
    color: var(--dark-rose);
    font-weight: 700;
}

/* WHY US */

.why-us {
    padding: 110px 7%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    background: var(--soft-pink);
}

.why-content {
    max-width: 580px;
}

.why-content h2 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
    margin: 15px 0 22px;
}

.why-content > p:not(.section-label) {
    color: var(--text);
    font-size: 17px;
    margin-bottom: 30px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.benefit {
    padding: 28px 20px;

    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;

    text-align: center;
}

.benefit span {
    font-size: 32px;
    color: var(--rose);
}

.benefit h3 {
    margin: 12px 0 7px;
    color: var(--dark-rose);
}

.benefit p {
    color: var(--text);
    font-size: 13px;
}

/* CTA */

.cta {
    padding: 120px 7%;
    text-align: center;

    background:
        radial-gradient(circle at 15% 25%, #f7dce7 0, transparent 25%),
        radial-gradient(circle at 85% 75%, #f8e7d8 0, transparent 25%),
        var(--cream);
}

.cta h2 {
    max-width: 800px;
    margin: 15px auto 18px;

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
}

.cta > p:not(.section-label) {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 30px;
}

/* FOOTER */

footer {
    padding: 55px 7%;

    background: #3d2c34;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

footer h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 6px;
}

footer p {
    color: #ead9df;
}

.copyright {
    font-size: 13px;
}

/* TABLET */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        min-height: 480px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .why-content {
        margin: auto;
        text-align: center;
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .navbar {
        padding: 17px 5%;
        flex-direction: column;
        gap: 12px;
    }

    .navbar nav {
        gap: 18px;
    }

    .navbar nav a {
        font-size: 12px;
    }

    .hero {
        padding: 70px 6%;
        min-height: auto;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

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

    .hero-card {
        min-height: 420px;
    }

    .planner-preview {
        min-height: 390px;
        padding: 35px 28px;
    }

    .planner-preview h2 {
        font-size: 34px;
    }

    .floating-note {
        font-size: 11px;
    }

    .note-one {
        left: 0;
    }

    .note-two {
        right: 0;
    }

    .products,
    .why-us {
        padding: 80px 6%;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
