/*
Theme: InDreams
Page: Contact

Development route:
 /contact-2/
*/


/* =========================================================
   FOUNDATION
   ========================================================= */

.indreams-contact-page {
    min-height: 100vh;

    color: #f8f2e8;

    background:
        #08051a;

    font-family:
        "Outfit",
        sans-serif;
}


.indreams-contact-main {
    position: relative;

    overflow: hidden;

    min-height:
        calc(100vh - 120px);

    padding:
        78px 0 86px;

    isolation: isolate;
}


.indreams-contact-shell {
    position: relative;
    z-index: 3;

    width:
        min(
            930px,
            calc(100% - 48px)
        );

    margin:
        0 auto;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.indreams-contact-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            ellipse at 18% 35%,
            rgba(80, 32, 143, 0.22),
            transparent 48%
        ),
        radial-gradient(
            ellipse at 84% 58%,
            rgba(32, 70, 156, 0.17),
            transparent 50%
        ),
        linear-gradient(
            180deg,
            #070416 0%,
            #08051c 100%
        );
}


.indreams-contact-stars {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    opacity: 0.55;

    background-image:
        radial-gradient(
            1px 1px at 12% 14%,
            rgba(255, 239, 186, 0.85),
            transparent
        ),
        radial-gradient(
            1px 1px at 31% 25%,
            rgba(255, 243, 205, 0.68),
            transparent
        ),
        radial-gradient(
            1px 1px at 68% 12%,
            rgba(255, 238, 190, 0.78),
            transparent
        ),
        radial-gradient(
            1.5px 1.5px at 83% 31%,
            rgba(255, 245, 205, 0.76),
            transparent
        ),
        radial-gradient(
            1px 1px at 18% 69%,
            rgba(255, 238, 190, 0.6),
            transparent
        ),
        radial-gradient(
            1px 1px at 57% 76%,
            rgba(255, 239, 190, 0.62),
            transparent
        ),
        radial-gradient(
            1px 1px at 91% 82%,
            rgba(255, 240, 190, 0.68),
            transparent
        );

    background-size:
        420px 420px;
}


.indreams-contact-ornaments {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    opacity: 0.09;

    background:
        radial-gradient(
            circle at 18% 42%,
            transparent 0,
            transparent 86px,
            rgba(207, 173, 90, 0.5) 88px,
            transparent 91px
        ),
        radial-gradient(
            circle at 81% 46%,
            transparent 0,
            transparent 90px,
            rgba(207, 173, 90, 0.45) 92px,
            transparent 95px
        );
}


/* =========================================================
   PAGE INTRO
   ========================================================= */

.indreams-contact-header {
    max-width: 760px;

    margin:
        0 auto;

    text-align: center;
}


.indreams-contact-eyebrow {
    margin:
        0 0 16px;

    color:
        #d6a947;

    font-size:
        11px;

    font-weight:
        600;

    letter-spacing:
        0.36em;

    text-transform:
        uppercase;
}


.indreams-contact-title {
    margin: 0;

    color:
        #f8f2e8;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            52px,
            6vw,
            76px
        );

    font-weight:
        500;

    letter-spacing:
        -0.03em;

    line-height:
        1;
}


.indreams-contact-title em {
    color:
        transparent;

    background:
        linear-gradient(
            135deg,
            #efd18a 0%,
            #d7a13a 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    font-style:
        italic;
}


.indreams-contact-intro {
    max-width:
        650px;

    margin:
        24px auto 0;

    color:
        rgba(
            248,
            242,
            232,
            0.82
        );

    font-size:
        16px;

    line-height:
        1.65;
}


/* =========================================================
   STATUS MESSAGE
   ========================================================= */

.indreams-contact-status {
    max-width:
        760px;

    margin:
        28px auto 0;

    padding:
        14px 18px;

    border:
        1px solid
        rgba(216, 175, 72, 0.3);

    border-radius:
        12px;

    text-align:
        center;

    font-size:
        13px;

    line-height:
        1.5;

    background:
        rgba(8, 7, 24, 0.82);
}


.indreams-contact-status--success {
    border-color:
        rgba(84, 202, 160, 0.5);

    color:
        #d8fff0;
}


.indreams-contact-status--error {
    border-color:
        rgba(224, 103, 119, 0.55);

    color:
        #ffdce2;
}


/* =========================================================
   FORM PANEL
   ========================================================= */

.indreams-contact-form {
    position: relative;

    margin-top:
        48px;

    padding:
        37px 38px 32px;

    border:
        1px solid
        rgba(216, 175, 72, 0.3);

    border-radius:
        21px;

    background:
        rgba(
            3,
            3,
            16,
            0.82
        );

    box-shadow:
        0 20px 58px
        rgba(
            0,
            0,
            0,
            0.3
        );
}


/* =========================================================
   FORM GRID
   ========================================================= */

.indreams-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        24px 26px;
}


.indreams-contact-field {
    min-width: 0;
}


.indreams-contact-field label {
    display: block;

    margin-bottom:
        10px;

    color:
        #d7a743;

    font-size:
        11px;

    font-weight:
        600;

    letter-spacing:
        0.25em;

    line-height:
        1.4;

    text-transform:
        uppercase;
}


/* =========================================================
   INPUTS
   ========================================================= */

.indreams-contact-field input,
.indreams-contact-field select,
.indreams-contact-field textarea {
    width: 100%;

    border:
        1px solid
        rgba(216, 175, 72, 0.35);

    border-radius:
        999px;

    outline:
        none;

    color:
        #f8f2e8;

    background:
        rgba(
            0,
            0,
            0,
            0.38
        );

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.indreams-contact-field input,
.indreams-contact-field select {
    height:
        48px;

    padding:
        0 17px;
}


.indreams-contact-field textarea {
    min-height:
        170px;

    padding:
        16px 17px;

    border-radius:
        17px;

    line-height:
        1.55;

    resize:
        vertical;
}


.indreams-contact-field input:focus,
.indreams-contact-field select:focus,
.indreams-contact-field textarea:focus {
    border-color:
        rgba(232, 193, 91, 0.85);

    background:
        rgba(
            7,
            5,
            21,
            0.9
        );

    box-shadow:
        0 0 0 3px
        rgba(218, 171, 62, 0.08);
}


.indreams-contact-field input::placeholder,
.indreams-contact-field textarea::placeholder {
    color:
        rgba(
            248,
            242,
            232,
            0.33
        );
}


/* =========================================================
   SELECT
   ========================================================= */

.indreams-contact-field select {
    cursor:
        pointer;

    color:
        rgba(
            248,
            242,
            232,
            0.92
        );
}


.indreams-contact-field select option {
    color:
        #f8f2e8;

    background:
        #090617;
}


/* =========================================================
   MESSAGE FIELD
   ========================================================= */

.indreams-contact-field--message {
    margin-top:
        24px;
}


/* =========================================================
   FORM FOOTER
   ========================================================= */

.indreams-contact-form-footer {
    display: flex;

    gap:
        24px;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        26px;
}


.indreams-contact-form-footer p {
    margin: 0;

    color:
        rgba(
            248,
            242,
            232,
            0.48
        );

    font-size:
        11px;

    line-height:
        1.5;
}


.indreams-contact-submit {
    display:
        inline-flex;

    min-width:
        165px;

    min-height:
        48px;

    padding:
        13px 25px;

    align-items:
        center;

    justify-content:
        center;

    border:
        0;

    border-radius:
        999px;

    cursor:
        pointer;

    color:
        #231607;

    background:
        linear-gradient(
            90deg,
            #e8b63e 0%,
            #f1c553 55%,
            #dda72d 100%
        );

    box-shadow:
        0 8px 28px
        rgba(224, 171, 47, 0.33);

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}


.indreams-contact-submit:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.06);

    box-shadow:
        0 11px 34px
        rgba(224, 171, 47, 0.42);
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.indreams-contact-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.indreams-contact-details {
    display: flex;

    flex-wrap: wrap;

    gap:
        13px;

    align-items:
        center;

    justify-content:
        center;

    margin-top:
        34px;

    color:
        rgba(
            248,
            242,
            232,
            0.69
        );

    font-size:
        12px;

    line-height:
        1.5;
}


.indreams-contact-details a {
    color:
        rgba(
            248,
            242,
            232,
            0.82
        );

    text-decoration:
        none;
}


.indreams-contact-details a:hover {
    color:
        #d9aa47;
}


.indreams-contact-details address {
    margin: 0;

    font-style:
        normal;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .indreams-contact-shell {
        width:
            min(
                860px,
                calc(100% - 40px)
            );
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .indreams-contact-main {
        padding:
            54px 0 62px;
    }


    .indreams-contact-shell {
        width:
            min(
                100% - 30px,
                930px
            );
    }


    .indreams-contact-eyebrow {
        font-size:
            9px;

        letter-spacing:
            0.28em;
    }


    .indreams-contact-title {
        font-size:
            clamp(
                45px,
                13vw,
                62px
            );
    }


    .indreams-contact-intro {
        font-size:
            15px;
    }


    .indreams-contact-form {
        margin-top:
            37px;

        padding:
            27px 20px 23px;

        border-radius:
            17px;
    }


    .indreams-contact-grid {
        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .indreams-contact-field--message {
        margin-top:
            20px;
    }


    .indreams-contact-form-footer {
        flex-direction:
            column;

        align-items:
            stretch;

        margin-top:
            22px;
    }


    .indreams-contact-form-footer p {
        text-align:
            center;
    }


    .indreams-contact-submit {
        width:
            100%;
    }


    .indreams-contact-details {
        flex-direction:
            column;

        gap:
            7px;

        text-align:
            center;
    }


    .indreams-contact-details > span {
        display:
            none;
    }
}