* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('/resources/images/for_rent.jpeg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: #1e1e1e;
    line-height: 1.6;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo img {
    height: 50px;
}
.logo a {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 600;
}
.logo a:hover {
    color: #ab416c;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}
.nav-menu a {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 600;
}
.nav-menu a:hover {
    color: #ab416c;
}

.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: url('/resources/images/for_rent.jpeg') no-repeat center center/cover;
    background-attachment: fixed;
}
.hero h1 {
    font-size: 2.75rem;
    color: #ab416c;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}
.hero div {
    background-color: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

.acronym p {
    font-size: 2.0rem;
    text-align: left;
    margin: 0;
    padding: 0;
}

.section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    max-width: 960px;
    margin: 0 auto;
    border-bottom: 1px solid #aaaaaa;
}
.section h2 {
    font-size: 2rem;
    color: #ab416c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 1.2rem;
}

.centered-img {
    display: block;
    margin: 2rem auto;
    max-width: 600px;
    width: 100%;
}

.responsive-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.headshot {
    text-align: center;
    margin-top: 3rem;
}
.headshot img {
    width: 180px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.headshot .caption {
    font-weight: bold;
    font-size: 1rem;
}

.login-button {
    display: inline-block;
    margin-top: 2rem;
    background-color: #ab416c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.login-button:hover {
    background-color: #932f57;
}

footer {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    max-width: 960px;
    margin: 0 auto;
}
footer a {
    color: white;
}
footer a:hover {
    color: #ab416c;
}
footer a:visited {
    color: white;
}

.eho img {
    height: 100px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 5%;
}

.embedded-document {
    width: 100%;
    height: 750px;
}

.error {
    color: red;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .nav-menu.show {
        display: flex;
    }

    .logo {
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
        margin: 0 auto;
        color: #1e1e1e;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .embedded-document {
        width: 100%;
        height: 100%;
    }

    .hero {
        background-size: auto;
    }
    .hero h1 {
        font-size: 2.0rem;
        margin-bottom: 0.5rem;
    }
    .hero p {
        font-size: 0.75rem;
        padding: 0 0.25rem;
    }

    body {
        background-image: none;
        background-color: #ffffff;
    }
}