.section-title {
    font-size: 2em;
    font-weight: 900;
    color: #b85c38;
    margin-bottom: 18px;
    text-align: center;
    text-transform: none;
}

.available-title {
    font-size: 2em;
    font-weight: 900;
    color: #b85c38;
    margin-bottom: 18px;
    text-align: center;
}

.about-title {
    font-size: 2em;
    font-weight: 900;
    color: #b85c38;
    margin-bottom: 18px;
    text-align: center;
}

.contact-box h5 {
    font-size: 1.5em;
    font-weight: 900;
    color: #b85c38;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box h5 .fa {
    font-size: 1.5em;
    margin-right: 8px;
}

.contact-box .email-address {
    display: block;
    margin: 0 0 4px 0;
    padding: 0;
    line-height: 1.2;
}

.contact-box .email-address:last-child {
    margin-bottom: 0;
}

.half-box {
    width: 50%;
    min-width: 0;
    margin-bottom: 10px;
    background: #232323;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(184, 92, 56, 0.08);
    padding: 30px 24px;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1em;
    font-weight: 700;
    color: #fff !important;
    background-color: #b85c38;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(184, 92, 56, 0.08);
    text-decoration: none;
    margin-top: 16px;
    transition: background 0.2s, color 0.2s;
}

.custom-btn:hover,
.custom-btn:focus {
    background-color: #a94442;
    color: #ffd6a0 !important;
    text-decoration: none;
}

/*!
 * Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* --- MAIN BACKGROUND COLOR --- */
html,
body {
    width: 100%;
    height: 100%;
    background: #fff8f2;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
}


/* --- CUSTOM BANNER NAVIGATION BAR --- */
.custom-banner-nav {
    background: #b85c38;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 100;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 2vw;
    box-sizing: border-box;
}

/* Logo on the left */
.banner-logo-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    max-width: 100px;
}

.logo-image {
    max-height: 100px;
    width: auto;
    height: auto;
}

/* Title in the center */
.banner-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 20px;
}

.banner-company-name {
    font-size: 2.8em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    text-align: center;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.1;
}

/* Hamburger menu on the right */
.hamburger-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6em;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex: 0 0 auto;
}

.hamburger-menu:hover {
    color: #ffd6a0;
}

/* Dropdown Navigation Banner */
.dropdown-nav {
    background: #b85c38;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 99;
    position: relative;
    border-top: 3px solid #232323;
}

.dropdown-nav.active {
    max-height: 100px;
}

.dropdown-nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.dropdown-nav-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 1vw;
    font-size: 1.1em;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    border-right: 2px solid #232323;
}

.dropdown-nav-link:last-child {
    border-right: none;
}

.dropdown-nav-link:hover,
.dropdown-nav-link:focus {
    background: rgba(255, 214, 160, 0.12);
    color: #ffd6a0;
    text-decoration: none;
}

.lead {
    font-size: 18px;
    font-weight: 400;
}

/* --- INTRO HEADER --- */
.intro-header {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    color: #b85c38;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}

.company-title {
    font-size: 8em;
    font-weight: 900;
    color: #b85c38;
    text-shadow: 2px 2px 8px #fff2e1, 0 2px 8px #a94442;
    margin-bottom: 40px;
    margin-top: 0;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 2;
}

.framed-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.framed-image img {
    border: 8px solid #232323;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(184, 92, 56, 0.2);
    max-width: 700px;
    width: 50vw;
    min-width: 320px;
    background: #232323;
    height: auto;
}

.large-framed-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.intro-message {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SLIDER SECTION --- */
.slider-section {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.slider-rectangle {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #232323;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(184, 92, 56, 0.08);
    padding: 0;
    min-height: 260px;
    position: relative;
}

.slider-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
    padding: 24px 0 24px 0;
}

.slider-title {
    color: #b85c38;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.slider-arrow {
    font-size: 2em;
    color: #b85c38;
    cursor: pointer;
    user-select: none;
    padding: 0 24px;
    transition: color 0.2s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.slider-arrow:hover {
    color: #a94442;
}

.slider-boxes.connected {
    display: flex;
    flex: 1;
    height: 100%;
    width: 100%;
}

.slider-box {
    flex: 1;
    background: #232323;
    border-top: 4px solid #b85c38;
    border-bottom: 4px solid #b85c38;
    border-right: none;
    border-left: 4px solid #b85c38;
    border-radius: 0;
    box-shadow: none;
    padding: 40px 0;
    color: #fff;
    font-size: 1.2em;
    min-width: 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.slider-box:last-child {
    border-right: 4px solid #b85c38;
}

/* --- ABOUT US SECTION --- */
.about-section {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-box {
    background: #232323;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(184, 92, 56, 0.08);
    padding: 30px 24px;
    color: #fff;
    font-size: 1.2em;
    width: 100%;
    font-weight: 700;
    margin-bottom: 10px;
    flex: 1 1 0;
    min-width: 0;
}

@media(max-width: 900px) {
    .company-title {
        font-size: 4em;
    }

    .framed-image img,
    .large-framed-image {
        max-width: 95vw;
        width: 95vw;
    }

    .slider-section,
    .about-section {
        max-width: 95vw;
    }
}

@media(max-width:767px) {
    .intro-message {
        padding-bottom: 15%;
    }

    .intro-message>h1 {
        font-size: 3em;
    }

    ul.intro-social-buttons>li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.intro-social-buttons>li:last-child {
        margin-bottom: 0;
    }

    .intro-divider {
        width: 100%;
    }

    .banner h2 {
        margin: 0;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
        font-size: 3em;
    }

    ul.banner-social-buttons>li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons>li:last-child {
        margin-bottom: 0;
    }
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {
    .banner-flex {
        height: 80px;
    }

    .banner-logo-left {
        max-width: 80px;
    }

    .logo-image {
        max-height: 80px;
    }

    .banner-company-name {
        font-size: 1.8em;
        letter-spacing: 2px;
    }

    .hamburger-menu {
        font-size: 1.4em;
    }

    .dropdown-nav.active {
        max-height: 100px;
    }

    .dropdown-nav-link {
        font-size: 0.95em;
        padding: 6px 0.5vw;
    }
}

@media (max-width: 480px) {
    .banner-flex {
        height: 70px;
        padding: 0 1vw;
    }

    .banner-logo-left {
        max-width: 70px;
    }

    .logo-image {
        max-height: 70px;
    }

    .banner-company-name {
        font-size: 1.2em;
        letter-spacing: 1px;
    }

    .hamburger-menu {
        font-size: 1.2em;
        padding: 5px;
    }

    .dropdown-nav.active {
        max-height: 80px;
    }

    .dropdown-nav-link {
        font-size: 0.85em;
        padding: 0 0.3vw;
        margin: 04px 0.3vw
    }


    .footer {
        padding: 20px 0;
        background-color: #b85c38;
        color: #fff;
        font-size: 2em;
        font-weight: 900;
        text-align: center;
        margin-bottom: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .copyright {
        margin: 15px 0 0;
        color: #fff;
    }

    a.email-address {
        color: #FFFFFF;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    }

    a.email-address:hover {
        color: #FFFFFF;
    }

    .logo-placeholder img {
        max-height: 50px;
        width: auto;
    }
}

.footer {
    padding: 20px 0;
    background-color: #b85c38;
    color: #fff;
    font-size: 2em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.copyright {
    margin: 15px 0 0;
    color: #fff;
}

/* ── Available Apartments Section ────────────────────────────────── */

/* Outer wrapper — same width/margin as .about-section */
.avail-outer-section {
    width: 100%;
}

/* The dark box — same look as .about-box */
.avail-rectangle {
    background: #232323;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(184, 92, 56, 0.08);
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 100px;
}

/* ── Empty state ── */
.avail-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 30px 0;
    color: #888;
    font-size: 1em;
    font-weight: 700;
    text-align: center;
}

.avail-empty-icon {
    font-size: 2.2em;
    color: #555;
}

/* ── Carousel arrows ── */
.avail-arrow {
    background: none;
    border: 2px solid #b85c38;
    color: #b85c38;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.avail-arrow:hover {
    background: #b85c38;
    color: #fff;
}

/* ── Viewport: clips to show only the active page ── */
.avail-viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

/* ── Each page holds up to 2 cards side by side ── */
.avail-page {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.avail-page.avail-page-active {
    display: grid;
}

/* Single-card page: center the one card */
.avail-page.avail-page-single {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Individual Card ── */
.avail-card {
    background: #2e2e2e;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(184, 92, 56, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
    transition: box-shadow 0.2s;
    border: 1px solid #3a3a3a;
}

.avail-card:hover {
    box-shadow: 0 4px 20px rgba(184, 92, 56, 0.25);
}

.avail-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.avail-card-body {
    padding: 12px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.avail-card-name {
    font-size: 1em;
    font-weight: 900;
    color: #b85c38;
    margin: 0;
    text-align: left;
}

.avail-card-address {
    color: #fff;
    font-size: 0.82em;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.avail-card-address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.avail-card-address a:hover {
    color: #b85c38;
    text-decoration: underline;
}

.avail-card-units {
    color: #ddd;
    font-size: 0.82em;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.avail-card-units .fa {
    color: #b85c38;
    margin-right: 4px;
}

.avail-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
}

.avail-btn {
    display: block;
    width: 100%;
    padding: 7px 8px;
    font-size: 0.8em;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.avail-btn-info {
    background: #b85c38;
    color: #fff !important;
    border: 2px solid #b85c38;
}

.avail-btn-info:hover {
    background: #a94432;
    border-color: #a94432;
    color: #ffd6a0 !important;
    text-decoration: none;
}

.avail-btn-aptcom {
    background: transparent;
    color: #b85c38 !important;
    border: 2px solid #b85c38;
}

.avail-btn-aptcom:hover {
    background: #b85c38;
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 600px) {
    .avail-page {
        grid-template-columns: 1fr;
    }

    .avail-arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.85em;
    }
}