body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    margin: 0px;
    flex: 1;
    min-width: 0;
    min-height: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
}

.darkgray-text {
    color: #112112
}

.centered-text {
    text-align: center;
}

a:link, a:visited {
    text-decoration: none;
    color: #19345D;
    width: fit-content;
}

a:hover {
    color: #7D8A9C;
}

.header-logo{
    font-weight:bold;
    font-size: 1.75rem;
}

.header-links {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    gap: 1rem;
    list-style: none;
    margin-left: 10%;
    margin-right: 10%;
    min-width: fit-content;
}

.book-your-stay {
    font-weight: bold;
    font-size: 1.5rem;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.hero-header{
    font-weight: bold;
    font-size: 2rem;
    margin: 0px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    max-width: 40%;
}

.hero-subtext {
    text-align: justify;
    font-size: 1.25rem;
}

.wide-hero {
    max-width: 85%;
}

.hero-img {
    max-width: 100%;
    object-fit: contain;
}

.card-section {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-section-column {
    flex-direction: column;
}

.card-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-section-title {
    font-size: 1.75rem;
}

.card-title {
    font-weight: bold;
    font-size: 1.75rem;
}

.card-text {
    text-align: justify;
    font-size: 1.5rem;
    margin: .25rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30%;
    margin: 1rem;
    text-align: center;
    min-width: 20%;
}

.card-rooms {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-evenly;
    margin: 24px;
    max-width: 95%;
}

.card-img-main {
    width: 100%;
    object-fit: cover;
    margin-bottom: 8px;
    aspect-ratio: 1;
}

.card-img-rooms {
    max-width: 45%;
    height: auto;
    object-fit: contain;
}

.card-content-rooms {
    display: flex;
    flex-direction: column;
    margin-left: .5rem;
    max-width: 60%;
    max-height: 100%;
    justify-content: space-evenly;
    font-size: 1.5rem;
}

.room-title {
    font-size: 1.75rem;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-cards {
    display: flex;
    justify-content: space-evenly;
}

.footer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 20%;
}

.footer-card-heading, .footer-card-text {
    margin: 0;
    font-size: 1rem;
}

#copyright {
    align-self: center;
    font-size: .8rem;
}

.body-text {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    text-align: center;
    align-self: center;
    margin-bottom: 2rem;
}

.policy-text {
    text-align: justify;
}

.body-img-container {
    margin: .5rem;
}

.body-img-caption {
    font-style: italic;
    margin-bottom: 0;
}

.card-img-amenities {
    max-width: 40%;
    object-fit: cover;
    aspect-ratio: 1;
}

.map-wrapper {
    display: flex;
    justify-content: center;
}

.map-embed {
    width: 95%;
    height: 600px;
}