/* =========================================
   ISIDORA FONT
========================================= */

@font-face {

    font-family: "Isidora";

    src:
        url("./assets/fonts/isidora-light.woff")
        format("woff");

    font-weight: 300;

    font-style: normal;

    font-display: swap;
}


/* =========================================
   RESET
========================================= */

* {

    box-sizing: border-box;

}


html {

    margin: 0;

    padding: 0;

    width: 100%;

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    width: 100%;

    min-width: 320px;

    background: #f8f4ee;

    color: #ffffff;

    font-family: "Isidora", sans-serif;

    font-weight: 300;

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;

}


a {

    text-decoration: none;

}


/* =========================================
   CONTACT LOCATION
========================================= */

.dev1-cbox-contact-location {

    position: relative;

    width: 100%;

    padding:
        78px
        0
        70px;

    background:
        linear-gradient(
            135deg,
            #301139 0%,
            #3d1648 42%,
            #28102f 100%
        );

    overflow: hidden;

}


/* =========================================
   SUBTLE BACKGROUND
========================================= */

.dev1-cbox-contact-location::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: -180px;

    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(137, 74, 151, 0.18) 0%,
            rgba(137, 74, 151, 0) 70%
        );

    pointer-events: none;

}


/* =========================================
   CONTAINER
========================================= */

.dev1-cbox-contact-location__container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: none;

    margin: 0 auto;

    padding-left: 7.7%;

    padding-right: 7.7%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(430px, 0.85fr);

    gap: 72px;

    align-items: center;

}


/* =========================================
   MAP WRAPPER
========================================= */

.dev1-cbox-contact-location__map-wrapper {

    width: 100%;

    min-width: 0;

}


/* =========================================
   MAP
========================================= */

.dev1-cbox-contact-location__map {

    position: relative;

    width: 100%;

    height: 440px;

    overflow: hidden;

    border-radius:
        28px
        0
        28px
        0;

    background: #d7d1c7;

    box-shadow:
        0 22px 45px
        rgba(15, 5, 22, 0.25);

}


/* =========================================
   MAP IFRAME
========================================= */

.dev1-cbox-contact-location__map iframe {

    display: block;

    width: 100%;

    height: 100%;

    border: 0;

}


/* =========================================
   MAP BADGE
========================================= */

.dev1-cbox-contact-location__map-badge {

    position: absolute;

    left: 22px;

    bottom: 22px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 195px;

    padding:
        14px
        18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius:
        17px
        0
        17px
        0;

    background:
        rgba(48, 22, 57, 0.96);

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.2);

}


.dev1-cbox-contact-location__map-badge-dot {

    width: 8px;

    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f1c64e;

}


.dev1-cbox-contact-location__map-badge strong {

    display: block;

    margin-bottom: 3px;

    font-size: 14px;

    line-height: 1.25;

    font-weight: 300;

    color: #ffffff;

}


.dev1-cbox-contact-location__map-badge span {

    display: block;

    font-size: 11px;

    line-height: 1.3;

    color:
        rgba(255, 255, 255, 0.68);

}


/* =========================================
   CONTENT
========================================= */

.dev1-cbox-contact-location__content {

    width: 100%;

    max-width: 690px;

}


/* =========================================
   EYEBROW
========================================= */

.dev1-cbox-contact-location__eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

}


.dev1-cbox-contact-location__eyebrow-line {

    display: block;

    width: 31px;

    height: 2px;

    flex-shrink: 0;

    background: #f0bd43;

}


.dev1-cbox-contact-location__eyebrow-text {

    font-size: 11px;

    line-height: 1.2;

    font-weight: 300;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    color: #e8b842;

}


/* =========================================
   TITLE
========================================= */

.dev1-cbox-contact-location__title {

    margin: 0;

    padding: 0;

    font-family: "Isidora", sans-serif;

    font-size:
        clamp(
            52px,
            4.5vw,
            76px
        );

    line-height: 1.02;

    font-weight: 300;

    letter-spacing: -1.8px;

    text-transform: uppercase;

    color: #ffffff;

}


/* =========================================
   DESCRIPTION
========================================= */

.dev1-cbox-contact-location__description {

    max-width: 600px;

    margin:
        27px
        0
        28px;

    font-size:
        clamp(
            15px,
            1.1vw,
            18px
        );

    line-height: 1.75;

    font-weight: 300;

    color:
        rgba(255, 255, 255, 0.67);

}


/* =========================================
   DETAILS
========================================= */

.dev1-cbox-contact-location__details {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 22px;

}


/* =========================================
   DETAIL CARD
========================================= */

.dev1-cbox-contact-location__detail-card {

    min-height: 118px;

    padding:
        20px
        20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius:
        17px
        0
        17px
        0;

    background:
        rgba(255, 255, 255, 0.07);

}


/* =========================================
   DETAIL LABEL
========================================= */

.dev1-cbox-contact-location__detail-label {

    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    line-height: 1.2;

    color:
        rgba(255, 255, 255, 0.58);

}


/* =========================================
   DETAIL VALUE
========================================= */

.dev1-cbox-contact-location__detail-value {

    display: block;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 300;

    color: #ffffff;

}


/* =========================================
   DIRECTIONS BUTTON
========================================= */

.dev1-cbox-contact-location__directions {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding:
        0
        25px;

    border:
        1px solid
        #f1c04d;

    border-radius:
        17px
        0
        17px
        0;

    background: #f1c04d;

    color: #29162f;

    font-size: 14px;

    line-height: 1;

    font-weight: 300;

    letter-spacing: 0.2px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.dev1-cbox-contact-location__directions:hover {

    transform: translateY(-2px);

    background: #f5c95c;

}


.dev1-cbox-contact-location__directions-arrow {

    font-size: 17px;

    line-height: 1;

}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .dev1-cbox-contact-location {

        padding:
            88px
            0
            78px;

    }

    .dev1-cbox-contact-location__container {

        padding-left: 7.7%;

        padding-right: 7.7%;

        gap: 76px;

    }

    .dev1-cbox-contact-location__map {

        height: 440px;

    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1300px) {

    .dev1-cbox-contact-location {

        padding:
            68px
            0
            65px;

    }

    .dev1-cbox-contact-location__container {

        padding-left: 6%;

        padding-right: 6%;

        gap: 50px;

        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(390px, 0.9fr);

    }

    .dev1-cbox-contact-location__map {

        height: 420px;

    }

    .dev1-cbox-contact-location__title {

        font-size:
            clamp(
                48px,
                5vw,
                68px
            );

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .dev1-cbox-contact-location {

        padding:
            60px
            0;

    }

    .dev1-cbox-contact-location__container {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-left: 5%;

        padding-right: 5%;

    }

    .dev1-cbox-contact-location__map {

        height: 420px;

    }

    .dev1-cbox-contact-location__content {

        max-width: 760px;

    }

    .dev1-cbox-contact-location__title {

        font-size:
            clamp(
                48px,
                7vw,
                68px
            );

    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 700px) {

    .dev1-cbox-contact-location {

        padding:
            50px
            0
            52px;

    }

    .dev1-cbox-contact-location__container {

        padding-left: 24px;

        padding-right: 24px;

        gap: 34px;

    }

    .dev1-cbox-contact-location__map {

        height: 360px;

        border-radius:
            24px
            0
            24px
            0;

    }

    .dev1-cbox-contact-location__map-badge {

        left: 18px;

        bottom: 18px;

    }

    .dev1-cbox-contact-location__title {

        font-size:
            clamp(
                42px,
                8vw,
                58px
            );

        letter-spacing: -1px;

    }

    .dev1-cbox-contact-location__description {

        margin-top: 22px;

        margin-bottom: 24px;

        font-size: 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dev1-cbox-contact-location {

        padding:
            45px
            0
            48px;

    }

    .dev1-cbox-contact-location__container {

        padding-left: 20px;

        padding-right: 20px;

        gap: 30px;

    }

    .dev1-cbox-contact-location__map {

        height: 310px;

        border-radius:
            20px
            0
            20px
            0;

    }

    .dev1-cbox-contact-location__map-badge {

        left: 14px;

        bottom: 14px;

        min-width: 175px;

        padding:
            12px
            14px;

        gap: 9px;

    }

    .dev1-cbox-contact-location__map-badge strong {

        font-size: 12px;

    }

    .dev1-cbox-contact-location__map-badge span {

        font-size: 10px;

    }

    .dev1-cbox-contact-location__eyebrow {

        gap: 8px;

        margin-bottom: 13px;

    }

    .dev1-cbox-contact-location__eyebrow-line {

        width: 28px;

    }

    .dev1-cbox-contact-location__eyebrow-text {

        font-size: 10px;

        letter-spacing: 0.6px;

    }

    .dev1-cbox-contact-location__title {

        font-size:
            clamp(
                36px,
                10vw,
                50px
            );

        line-height: 1.05;

        letter-spacing: -0.8px;

    }

    .dev1-cbox-contact-location__description {

        margin:
            20px
            0
            22px;

        font-size: 14px;

        line-height: 1.7;

    }

    .dev1-cbox-contact-location__details {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 18px;

    }

    .dev1-cbox-contact-location__detail-card {

        min-height: auto;

        padding:
            17px
            18px;

    }

    .dev1-cbox-contact-location__detail-value {

        font-size: 14px;

    }

    .dev1-cbox-contact-location__directions {

        width: auto;

        min-height: 50px;

        padding:
            0
            21px;

        font-size: 13px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .dev1-cbox-contact-location {

        padding:
            40px
            0
            42px;

    }

    .dev1-cbox-contact-location__container {

        padding-left: 16px;

        padding-right: 16px;

    }

    .dev1-cbox-contact-location__map {

        height: 280px;

    }

    .dev1-cbox-contact-location__title {

        font-size: 34px;

    }

    .dev1-cbox-contact-location__description {

        font-size: 13px;

    }

    .dev1-cbox-contact-location__detail-card {

        padding:
            16px;

    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .dev1-cbox-contact-location__directions {

        transition: none;

    }

}