/* Interior - Hero */
.interior-hero {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.interior-hero h1 {
    font-size: 6rem;
}

.interior-hero span {
    color: var(--compliment-color);
}

.interior-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.interior-hero-overlay {
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Interior Banner */

.interior-banner {
    position: relative;
}

.interior-banner img {
    z-index: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner-overlay {
    position: relative;
    z-index: 2;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: brightness(25%) blur(5px);
    box-shadow: inset 0px 0px 8px 2px black;
    user-select: none;
}

.interior-banner h3 {
    font-size: 4rem;
    margin: 0px;
    max-width: 85vw;
    text-align: center;
}

.interior-banner .button {
    margin-top: 50px;
    background-color: var(--compliment-color);
    color: white;
    font-size: 3rem;
}

.interior-banner .button:hover {
    background-color: var(--dark-compliment-color);
}

.interior-banner .gold-line {
    margin: 50px 0px;
}

/* Interior Services */

.interior-service {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #e1e1e1;
    padding: 50px 0px;
}

.interior-alt {
    background-color: #f9f9f9;
}

.interior-image-wrap {
    width: 550px;
    height: 400px;
    max-width: 85vw;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.interior-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.interior-card {
    color: black;
    width: 600px;
    max-width: 85vw;
}

.interior-card h3 {
    font-size: 4rem;
    margin: 0;
}

.interior-card .gold-line {
    width: 150px;
    margin-left: 0;
}

.interior-card p {
    font-size: 2rem;
}

.interior-card .button {
    background-color: var(--compliment-color);
    color: black;
    margin: 20px 0px;
    font-size: 2.25rem;
}

.interior-card .button:hover {
    background-color: var(--dark-compliment-color);
}