/* Community Level Styles */

:root {
    --navbar-mobile-logo-max-width: 70px;
    --navbar-logo-max-width: 120px;
    --menu-logo-max-width: 120px;
    
    --hero-subheader-font-size: var(--body-base-font-size);
    --hero-header-font-size: var(--header-base-font-size);
    
    --intro-hpt-impact-text-line-three-letter-spacing: 4px;
    --intro-hpt-impact-text-divider-height: 1px;
}

/* showcase links */
@media only screen and (min-width: 768px) {
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(3),
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(4) {
        display: block;
    }
}

@media only screen and (min-width: 1180px) {
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(5),
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(6),
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(7) {
        display: block;
    }
}

@media only screen and (min-width: 1600px) {
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(7),
    header .navbar #showcase_links.left-to-right .menu-item:nth-child(8) {
        display: block;
    }
}

/* custom button on SS */
.hp-slideshow {
    position: relative;
}

.hp-slideshow::after {
    content: '';
    background: rgba(0,0,0,0.15);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hp-slideshow.cinemagraph-wrapper:before {
    content: "";
    position: absolute;
    background: #222;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

h1.hero-subheader {
    font-family: var(--fonts-body);
    font-size: calc(var(--hero-subheader-font-size) * 1.1);
    font-weight: var(--body-base-font-weight);
    text-transform: uppercase;
    color: var(--secondary-base-alt);
    letter-spacing: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

h2.hero-header {
    font-family: var(--fonts-header);
    font-size: calc(var(--hero-header-font-size) * 2);
    font-weight: var(--header-base-font-weight);
    text-transform: capitalize;
    letter-spacing: initial;
    color: var(--secondary-base-alt);
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media only screen and (min-width: 1024px) {
    h1.hero-subheader {
        font-size: calc(var(--hero-subheader-font-size) * 1.4);
    }
    
    h2.hero-header {
        font-size: calc(var(--hero-header-font-size) * 4);
    }
}

.hero-overlay-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 3;
    width: 100%;
    padding: 0 5px;
    text-align: center;
}

@media only screen and (max-width: 479px) {
    .hero-overlay-info {
        left: 0;
        transform: translate(0, 0);
        top: 37%;
    }
}

a.hero-btn.button-style-2-petite {
    margin: 20px auto 0;
    padding: 8px 43px;
    background-color: transparent;
    color: var(--secondary-base-alt);
    outline: 1px solid var(--secondary-base-alt);
    outline-offset: 3px;
    border: 1px solid var(--secondary-base-alt);
    position: relative;
    transition: transform ease-in-out 0.3s 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

a.hero-btn.button-style-2-petite:before {
    content: "";
    position: absolute;
    z-index: -10;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-base);
    opacity: 0.6;
    transition: transform ease-in-out 0.3s 0.1s;
    transform: scaleY(0);
}

a.hero-btn.button-style-2-petite:hover:before {
    transform: scaleY(1);
}

#hero_button p {
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* home page text */
#intro_text_section .hpt-impact-text {
    width: max-content;
}

#intro_text_section .hpt-impact-text .hpt-impact-line-two,
#intro_text_section .hpt-impact-text .hpt-impact-line-three {
    font-size: clamp(1.25rem, 6vw, 3rem);
}

#apply_section .button-style-1 {
    color: var(--background-1-base);
}

@media (min-width: 768px) {
    #intro_text_section .hpt-impact-text .hpt-impact-line-two,
    #intro_text_section .hpt-impact-text .hpt-impact-line-three {
        font-size: calc(var(--intro-hpt-impact-font-size) * 2.5);
    }
}

@media (min-width: 1024px) {
    #intro_text_section .hpt-impact-text .hpt-impact-line-two, #intro_text_section .hpt-impact-text .hpt-impact-line-three {
        font-size: calc(var(--intro-hpt-impact-font-size) * 3.25);
    }
}

/* home page neighborhood */
#neighborhood_section .btn-container .neighborhood-button {
    border-color: var(--primary-base);
}

#neighborhood_section .btn-container .neighborhood-button:hover {
    border-color: var(--primary-base);
    background-color: var(--primary-base);
}

/* fp */
#body_floorplans .fp-text {
    max-width: 950px;
    margin: auto;
    padding: 30px;
}

#body_floorplans .fp-text p {
    text-align: justify;
}

/* amenities */
#amenity_page .seo-text {
    padding-top: 0;
}

#amenity_page .seo-text .seo-text-box {
    background: unset;
}

@media only screen and (max-width: 767px) {
    #presentational_headline_1,
    #presentational_headline_2 {
        height: 500px;
    }
}


