/* =========================================================
   INDREAMS HOMEPAGE
   SERVING SOUTH JERSEY
   ====================================================== */


/* =========================================================
   SECTION
   ====================================================== */

.indreams-home-south-jersey {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding:
        84px 0 90px;

    background:
        radial-gradient(
            ellipse at 18% 28%,
            rgba(123, 20, 138, 0.17),
            transparent 44%
        ),
        radial-gradient(
            ellipse at 84% 72%,
            rgba(22, 54, 135, 0.20),
            transparent 48%
        ),
        linear-gradient(
            125deg,
            #100018 0%,
            #0a001d 52%,
            #05072a 100%
        );

    border-top:
        1px solid
        rgba(232, 182, 76, 0.06);

    border-bottom:
        1px solid
        rgba(232, 182, 76, 0.07);
}


/* =========================================================
   SUBTLE STAR TEXTURE
   ====================================================== */

.indreams-home-south-jersey::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.14;

    background-image:
        radial-gradient(
            1px 1px at 8% 20%,
            rgba(255, 244, 211, 0.68),
            transparent
        ),
        radial-gradient(
            1px 1px at 24% 74%,
            rgba(255, 244, 211, 0.42),
            transparent
        ),
        radial-gradient(
            1px 1px at 44% 14%,
            rgba(255, 244, 211, 0.56),
            transparent
        ),
        radial-gradient(
            1px 1px at 66% 78%,
            rgba(255, 244, 211, 0.44),
            transparent
        ),
        radial-gradient(
            1px 1px at 87% 26%,
            rgba(255, 244, 211, 0.58),
            transparent
        );
}


.indreams-home-south-jersey
.indreams-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
   ====================================================== */

.indreams-home-south-jersey__header {
    max-width: 880px;

    margin:
        0 auto 42px;

    text-align: center;
}


/* =========================================================
   EYEBROW
   ====================================================== */

.indreams-home-south-jersey__eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin:
        0 0 16px;

    color:
        var(--indreams-gold);

    font-family:
        var(--indreams-font-body);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.30em;

    text-transform: uppercase;
}


.indreams-home-south-jersey__eyebrow::before,
.indreams-home-south-jersey__eyebrow::after {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    background:
        rgba(232, 182, 76, 0.55);
}


/* =========================================================
   HEADING
   ====================================================== */

.indreams-home-south-jersey__header h2 {
    max-width: 830px;

    margin:
        0 auto;

    color:
        var(--indreams-cream);

    font-family:
        var(--indreams-font-display);

    font-size:
        clamp(42px, 4.3vw, 62px);

    font-weight: 500;
    line-height: 1.02;

    letter-spacing: -0.03em;
}


/* =========================================================
   INTRO COPY
   ====================================================== */

.indreams-home-south-jersey__copy {
    max-width: 760px;

    margin:
        23px auto 0;

    color:
        rgba(246, 240, 229, 0.70);

    font-family:
        var(--indreams-font-body);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   LOCATION GRID
   ====================================================== */

.indreams-home-south-jersey__areas {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        16px 18px;

    max-width: 960px;

    margin:
        0 auto;
}


/* =========================================================
   LOCATION CARD
   ====================================================== */

.indreams-home-south-jersey__area {
    display: flex;

    flex-direction: column;

    min-height: 188px;

    padding:
        24px 24px 21px;

    border:
        1px solid
        rgba(232, 182, 76, 0.18);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(18, 4, 31, 0.82),
            rgba(7, 7, 35, 0.72)
        );

    box-shadow:
        0 14px 36px
        rgba(0, 0, 0, 0.11);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}


.indreams-home-south-jersey__area:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(232, 182, 76, 0.32);

    background:
        linear-gradient(
            135deg,
            rgba(25, 6, 40, 0.88),
            rgba(8, 8, 40, 0.78)
        );
}


/* =========================================================
   LOCATION TITLE
   ====================================================== */

.indreams-home-south-jersey__area h3 {
    margin:
        0 0 10px;

    color:
        var(--indreams-cream);

    font-family:
        var(--indreams-font-display);

    font-size: 23px;
    font-weight: 500;

    line-height: 1.08;
}


/* =========================================================
   LOCATION COPY
   ====================================================== */

.indreams-home-south-jersey__area p {
    margin:
        0 0 18px;

    color:
        rgba(246, 240, 229, 0.66);

    font-family:
        var(--indreams-font-body);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   TAGS
   ====================================================== */

.indreams-home-south-jersey__tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
}


.indreams-home-south-jersey__tags span {
    display: inline-flex;

    align-items: center;

    min-height: 26px;

    padding:
        4px 11px;

    border:
        1px solid
        rgba(232, 182, 76, 0.22);

    border-radius: 999px;

    background:
        rgba(232, 182, 76, 0.025);

    color:
        rgba(246, 240, 229, 0.76);

    font-family:
        var(--indreams-font-body);

    font-size: 9px;
    font-weight: 500;

    line-height: 1.1;
}


/* =========================================================
   CTA PANEL
   ====================================================== */

.indreams-home-south-jersey__cta {
    max-width: 960px;

    margin:
        36px auto 0;

    padding:
        28px 30px;

    border:
        1px solid
        rgba(232, 182, 76, 0.18);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(14, 3, 30, 0.72),
            rgba(6, 9, 42, 0.68)
        );

    text-align: center;
}


/* =========================================================
   CTA HEADING
   ====================================================== */

.indreams-home-south-jersey__cta h3 {
    margin: 0;

    color:
        var(--indreams-cream);

    font-family:
        var(--indreams-font-display);

    font-size: 25px;
    font-weight: 500;

    line-height: 1.15;
}


/* =========================================================
   CTA COPY
   ====================================================== */

.indreams-home-south-jersey__cta > p {
    margin:
        9px 0 0;

    color:
        rgba(246, 240, 229, 0.62);

    font-family:
        var(--indreams-font-body);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   CTA BUTTONS
   ====================================================== */

.indreams-home-south-jersey__cta-actions {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;
}


.indreams-home-south-jersey__cta-actions a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 37px;

    padding:
        0 17px;

    border:
        1px solid
        rgba(232, 182, 76, 0.34);

    border-radius: 999px;

    background:
        rgba(232, 182, 76, 0.02);

    color:
        var(--indreams-cream) !important;

    font-family:
        var(--indreams-font-body);

    font-size: 10px;
    font-weight: 500;

    text-decoration: none !important;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}


.indreams-home-south-jersey__cta-actions a:hover,
.indreams-home-south-jersey__cta-actions a:focus {
    border-color:
        var(--indreams-gold);

    background:
        rgba(232, 182, 76, 0.08);

    color:
        var(--indreams-gold) !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   TABLET
   ====================================================== */

@media (max-width: 900px) {

    .indreams-home-south-jersey {
        padding:
            72px 0 78px;
    }


    .indreams-home-south-jersey__header {
        margin-bottom: 34px;
    }


    .indreams-home-south-jersey__areas {
        gap: 14px;
    }


    .indreams-home-south-jersey__area {
        min-height: 210px;

        padding:
            22px 20px 19px;
    }


    .indreams-home-south-jersey__area h3 {
        font-size: 21px;
    }
}


/* =========================================================
   MOBILE
   ====================================================== */

@media (max-width: 680px) {

    .indreams-home-south-jersey {
        padding:
            60px 0 66px;
    }


    .indreams-home-south-jersey__header {
        margin-bottom: 28px;
    }


    .indreams-home-south-jersey__eyebrow {
        gap: 9px;

        font-size: 9px;

        letter-spacing: 0.25em;
    }


    .indreams-home-south-jersey__eyebrow::before,
    .indreams-home-south-jersey__eyebrow::after {
        width: 20px;
    }


    .indreams-home-south-jersey__header h2 {
        font-size: 39px;
    }


    .indreams-home-south-jersey__copy {
        margin-top: 18px;

        font-size: 13px;
    }


    .indreams-home-south-jersey__areas {
        grid-template-columns: 1fr;

        gap: 11px;

        max-width: 520px;
    }


    .indreams-home-south-jersey__area {
        min-height: 0;

        padding:
            20px 18px;
    }


    .indreams-home-south-jersey__area h3 {
        font-size: 22px;
    }


    .indreams-home-south-jersey__area p {
        margin-bottom: 15px;

        font-size: 12px;
    }


    .indreams-home-south-jersey__cta {
        max-width: 520px;

        margin-top: 26px;

        padding:
            24px 18px;
    }
}


/* =========================================================
   SMALL MOBILE
   ====================================================== */

@media (max-width: 420px) {

    .indreams-home-south-jersey__header h2 {
        font-size: 35px;
    }


    .indreams-home-south-jersey__tags {
        gap: 6px;
    }


    .indreams-home-south-jersey__tags span {
        padding:
            4px 9px;

        font-size: 8px;
    }


    .indreams-home-south-jersey__cta-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 280px;

        margin:
            17px auto 0;
    }


    .indreams-home-south-jersey__cta-actions a {
        width: 100%;
    }
}