/* === PROPERTY PAGE STYLES === */

/* === BASE === */
body {
    background-color: #1a1a1a;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: Verdana, sans-serif;
    font-size: 14px;
    color: #C8C9C4;
    margin: 0;
    padding: 20px 0;
}

a:link, a:visited, a:active { text-decoration: none; color: #fff; }
a:hover { text-decoration: underline; color: #fff; }

/* === CONTAINER === */
.container {
    width: 863px;
    margin: 0 auto;
}

/* === MENU === */
#menu {
    width: 863px;
    height: 40px;
    margin: 0 auto 10px;
    text-align: center;
    color: #ebebea;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.menu-btn {
    background-color: rgba(0, 0, 0, 0.7);
    min-width: 120px;
    padding: 7px 15px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    border: solid 1px black;
    color: #fff;
    white-space: nowrap;
}

.menu-btn:hover, .menu-btn.active {
    background-color: rgba(50, 50, 50, 0.9);
}

/* === MAIN CONTENT AREA === */
#main {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid black;
    width: 863px;
    margin: 0 auto;
}

.content-section {
    width: 853px;
    min-height: 500px;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    display: none;
}

.content-section.active {
    display: block;
}

.content-section iframe {
    max-width: 100%;
}

.content-section p {
    text-align: center;
    color: #C8C9C4;
}

/* === ADDRESS BAR === */
#address {
    width: 850px;
    margin: 10px auto;
    text-align: center;
}

#address .address-text {
    background-color: #333333;
    padding: 10px 20px;
    font-size: 20px;
    color: #fff;
}

/* === AGENT INFO === */
#info {
    text-align: center;
    width: 853px;
    min-height: 100px;
    margin: 2px auto 0;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

/* === FOOTER === */
#footer {
    width: 853px;
    margin: 1px auto 0;
    text-align: center;
    border: solid 1px #000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}

/* === DESCRIPTION TEXT === */
.description-text {
    padding: 20px;
    text-align: justify;
    line-height: 1.6;
}

