* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================= */

body {
    min-height: 100vh;

    font-family: "Cormorant Garamond", serif;

    background:
        linear-gradient(
            rgba(255, 220, 230, 0.55),
            rgba(255, 235, 241, 0.65)
        ),
        url("flowers-bg1.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}


/* =========================
   MAIN PAGE
========================= */

.page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================
   MAIN CARD
========================= */

.card {
    width: 100%;
    max-width: 780px;

    padding: 55px 65px;

    text-align: center;

    background: rgba(255, 250, 251, 0.88);

    border: 2px solid rgba(255, 255, 255, 0.9);

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(110, 35, 65, 0.20);

    backdrop-filter: blur(12px);
}


/* =========================
   LOGO
========================= */

.logo-section {
    margin-bottom: 35px;
}

.logo-circle {
    position: relative;

    width: 125px;
    height: 125px;

    margin: auto;

    border: 1.5px solid #c79b58;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.rf-logo {
    font-family: "Cormorant Garamond", serif;

    font-size: 55px;
    font-weight: 600;

    color: #8b294b;

    letter-spacing: -5px;
}


/* Flowers around logo */

.flower {
    position: absolute;

    font-size: 32px;
}

.flower-left {
    left: -12px;
    bottom: 20px;
}

.flower-bottom {
    right: -15px;
    bottom: -10px;

    font-size: 30px;
}


/* Brand Name */

.logo-section h1 {
    margin-top: 18px;

    font-size: 35px;

    font-weight: 600;

    letter-spacing: 5px;

    color: #7d2348;
}


/* Gold decorative line */

.gold-line {
    margin: 12px auto 0;

    width: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c79b58;

    font-size: 18px;
}

.gold-line::before,
.gold-line::after {
    content: "";

    height: 1px;

    background: #c79b58;

    flex: 1;
}

.gold-line span {
    margin: 0 10px;
}


/* =========================
   MAIN CONTENT
========================= */

.main-content {
    margin-top: 20px;
}

.main-content h2 {
    font-family: "Great Vibes", cursive;

    font-size: 82px;

    font-weight: 400;

    color: #c65378;

    line-height: 1.1;

    margin-bottom: 15px;
}


.tagline {
    font-size: 25px;

    font-weight: 600;

    color: #4e4547;

    margin-bottom: 15px;
}


.description {
    max-width: 560px;

    margin: auto;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #777;
}


/* =========================
   STAY CONNECTED
========================= */

.stay-connected {
    margin-top: 35px;
}


.section-title {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;
}

.section-title span {
    width: 65px;
    height: 1px;

    background: #c79b58;
}

.section-title h3 {
    font-size: 17px;

    letter-spacing: 2px;

    color: #b34d6d;
}


/* =========================
   INPUT BOX
========================= */

.input-box {
    width: 100%;

    height: 52px;

    display: flex;
    align-items: center;

    margin-bottom: 14px;

    padding: 5px;

    background: white;

    border: 1px solid #dc8ba4;

    border-radius: 30px;
}


.input-icon {
    width: 40px;
    height: 40px;

    margin-left: 3px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #c65378;

    color: white;

    font-size: 18px;
}


.input-box input {
    flex: 1;

    border: none;
    outline: none;

    padding: 0 15px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    color: #555;
}

.input-box input::placeholder {
    color: #aaa;
}


.input-box button {
    border: none;

    padding: 12px 24px;

    border-radius: 25px;

    background: #c65378;

    color: white;

    font-size: 14px;

    cursor: pointer;

    transition: 0.3s;
}

.input-box button:hover {
    background: #8b294b;

    transform: scale(1.03);
}


/* =========================
   CONTACT
========================= */

.contact-section {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 70px;
}


.contact-item {
    min-width: 200px;
}


.contact-icon {
    width: 45px;
    height: 45px;

    margin: auto auto 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #c65378;

    color: white;

    border-radius: 50%;

    font-size: 19px;
}


.contact-item h4 {
    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    color: #999;

    margin-bottom: 7px;
}


.contact-item a {
    font-family: Arial, sans-serif;

    font-size: 14px;

    text-decoration: none;

    color: #7d2348;
}

.contact-item a:hover {
    color: #c65378;
}


/* =========================
   FOOTER
========================= */

.footer {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #ead4dc;
}


.footer p {
    font-family: "Great Vibes", cursive;

    font-size: 25px;

    color: #c65378;
}


.heart {
    margin-top: 10px;

    font-size: 20px;

    color: #c65378;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 700px) {

    body {
        padding: 20px 12px;
    }

    .card {
        padding: 40px 20px;

        border-radius: 22px;
    }

    .logo-circle {
        width: 105px;
        height: 105px;
    }

    .rf-logo {
        font-size: 45px;
    }

    .logo-section h1 {
        font-size: 27px;

        letter-spacing: 3px;
    }

    .main-content h2 {
        font-size: 58px;
    }

    .tagline {
        font-size: 21px;
    }

    .description {
        font-size: 14px;
    }

    .input-box {
        height: auto;

        padding: 5px;
    }

    .input-box input {
        min-width: 0;

        padding: 0 8px;
    }

    .input-box button {
        padding: 11px 15px;
    }

    .contact-section {
        flex-direction: column;

        gap: 25px;
    }

    .footer p {
        font-size: 22px;
    }
}