@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'SloopScriptPro';
    src: url('../fonts/sloop-script-pro-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Theseasons family (weights and italics) */
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-reg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-it.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-ltit.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bdit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --light-pink: #F8C5F6;
    --dusty-pink: #CA8EB6;
    --hard-pink: #FF1167;
    --light-blue: #BFEFE4;
    --dusty-blue: #B0D7CC;
    --hard-blue: #1C98ED;
    --light-peach: #E8B4A3;
    --charcoal: #060A0E;
    --light-charcoal: #1C1F21;
    --hard-yellow: #FFEB38;
    --dusty-charcoal: #182736;
    --hard-white: #FFFFFF;
    --silver: #626C76;
}

body {
    background: linear-gradient(rgba(36, 36, 36, 0.5), rgba(255, 255, 255, 0.5)), url('../images/flower-bg3.jpg') no-repeat center center fixed !important;
    background-size: cover;
    color: var(--charcoal);
    font-family: 'Theseasons', Arial, sans-serif !important;
    overflow-x: hidden;
}

.header{
    margin-top: -200px !important;
    display: flex;
    justify-content: center;
}

.contact-container {
    height: auto;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 90px !important;
    margin-top: -150px !important;
    gap: 10px;
    align-items: start;
    display: flex;
    justify-content: center;
}

.contact-form-container {
    background-color: #ffffffbb;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-family: 'Theseasons', Arial, sans-serif;
    color: var(--dusty-charcoal);
    margin-bottom: 20px;
    text-align: center;
    font-size: 50px;
}

/* Improved card visuals for contact blocks */
.contact-details,
.contact-form {
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    box-shadow: 0 10px 30px rgba(24, 39, 54, 0.12);
    border: 1px solid rgba(28, 31, 33, 0.06);
    max-width: 600px !important;
}

.contact-details p {
    margin-bottom: 12px;
    color: var(--silver);
    font-size: 1.1rem;
    font-family: 'Roboto Condensed';
}

/* Center content in the left card */
.contact-details{
    text-align: center;
}
.contact-details .info-card{
    justify-content: center;
}

/* info-card for email/phone */
.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(241, 243, 247, 0.9), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(28, 31, 33, 0.04);
}

.info-card .icon {
    font-size: 1.35rem;
    color: var(--hard-pink);
}

.contact-form form label, .contact-form form button{
    font-family: 'Roboto Condensed', sans-serif;
}

.info-card .text {
    color: var(--charcoal);
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Form controls */
.form-control {
    border-radius: 12px;
    border: 1px solid rgba(28, 31, 33, 0.12);
    padding: 12px 14px;
    box-shadow: none;
    transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
}

.form-control:focus {
    border-color: var(--hard-blue);
    box-shadow: 0 6px 18px rgba(28, 152, 237, 0.08);
    outline: none;
    transform: translateY(-1px);
}

/* Themed primary button */
.btn-primary {
    background: var(--dusty-pink) !important;
    border: none !important;
    color: var(--hard-white) !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(202, 142, 182, 0.12);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease, background-color .12s ease;
}

.btn-primary:hover {
    background: var(--light-pink) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(248, 197, 246, 0.12);
    opacity: 0.98
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Alerts tuned to theme */
.alert-success {
    background: linear-gradient(90deg, rgba(196, 241, 230, 0.95), rgba(255, 255, 255, 0.95));
    border-color: rgba(28, 152, 237, 0.15);
    color: var(--charcoal)
}

.alert-danger {
    background: linear-gradient(90deg, rgba(255, 228, 235, 0.95), rgba(255, 255, 255, 0.95));
    border-color: rgba(255, 17, 103, 0.12);
    color: var(--charcoal)
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .contact-container {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
        height: auto
    }

    .contact-form-container h2 {
        font-size: 36px
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 18px
    }

    .info-card {
        padding: 10px
    }
}