/* =========================================================
   About Section
========================================================= */

.about-section {
    position: relative;

    padding: 6rem 1.5rem;

    background-image: url("/assets/images/casa\ -6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    width: 100%;
    flex-direction: column;

    overflow: hidden;
}


/* =========================================================
   Overlay
========================================================= */

.about-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);
}


/* =========================================================
   Container
========================================================= */

.about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    backdrop-filter: blur(40px);
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--color-black);

    flex-direction: column;
    display: flex;

    margin: 0 auto;
}


/* =========================================================
   Header
========================================================= */

.about-header {
    margin-bottom: 2rem;
    margin-right: 3rem;

}


/* =========================================================
   About Title
========================================================= */

.about-title {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 0.6rem;

    margin-bottom: 1.5rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* =========================================================
   Description
========================================================= */

.about-description {

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

    font-size: 0.95rem;
    line-height: 2;
}


/* =========================================================
   Divider
========================================================= */

.about-divider {
    width: 100%;
    height: 1px;

    margin-bottom: 3rem;

    background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   Content Layout
========================================================= */

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;

}


/* =========================================================
   Information
========================================================= */

.about-information {
    width: 100%;
}


/* =========================================================
   Information List
========================================================= */

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}


/* =========================================================
   List Item
========================================================= */

.about-list li {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    padding-bottom: 0.8rem;

}


/* =========================================================
   Labels
========================================================= */

.about-list span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 1rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}


/* =========================================================
   Values
========================================================= */

.about-list a,
.about-list p,
.about-list address {
    color: white;

    font-size: 0.95rem;
    line-height: 1.8;

    font-style: normal;
}


/* =========================================================
   Map
========================================================= */

.about-map {
    width: 100%;
    height: auto;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto;

    box-shadow:
        0px 15px 40px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   Map Frame
========================================================= */

.about-map iframe {
    width: 100%;

    border: 0;

    filter:
        grayscale(100%)
        contrast(1.1)
        brightness(0.85);
}


/* =========================================================
   Tablet
========================================================= */

@media screen and (min-width: 768px) {

    .about-section {
        padding: 7rem 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

}


/* =========================================================
   Desktop
========================================================= */

@media screen and (min-width: 1200px) {

    .about-section {
        flex-direction: row;
        width: 100%;
    }

    .about-section {
        padding: 8rem 2rem;

    }

    .about-content {
        flex-direction: row;
        align-items: stretch;
        padding: 2rem;
        width: 100%;

    }

    .about-information {
        width: 45%;
    }

    .about-map {
        width: 100%;
        height: 100%;
    }

    .about-map iframe {
        height: 100%;
        min-height: 500px;
    }

}