@font-face {
    font-family: "Advent Pro";

    src: url("fonts/advent-pro-v11-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Open Sans";

    src: url("fonts/open-sans-v18-latin-regular.woff2") format("woff2");
}

html,
body {
    margin: 0;

    padding: 0;

    width: 100%;

    font-family: "Open Sans", sans-serif;

    background-color: white;
}

nav {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background-color: white;

    padding: 15px 0;

    border-bottom: 1px solid #ccc;
}

nav ul {
    list-style: none;

    margin: 0;

    padding: 0 40px;

    display: flex;

    gap: 25px;
}

nav ul li a {
    text-decoration: none;

    color: #0066cc;

    font-weight: bold;
}

nav ul li a:visited {
    color: #0066cc;
}

.teaser {
    display: block;

    width: 100%;

    height: 100vh;

    background: url("images/lakeside-3000.jpg") no-repeat center center;

    background-size: cover;

    margin: 0;

    padding: 0;

    position: relative;
}

.teaser-text {
    position: absolute;

    top: 120px;

    left: 40px;

    color: white;
}

.teaser h1 {
    font-family: "Advent Pro", sans-serif;

    font-size: 4rem;

    margin: 0;

    font-weight: normal;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

main {
    display: block;

    width: 100%;

    margin: 0;

    padding: 60px 40px;

    box-sizing: border-box;
}

h2 {
    margin-top: 0;

    font-size: 1.8rem;
}

.room-list {
    list-style: none;

    padding: 0;

    margin: 0;
}

.room-list li {
    margin-bottom: 15px;
}

.room-list a {
    color: #0066cc;

    text-decoration: underline;
}

.room-list a:visited {
    color: #0066cc;
}

footer {
    display: block;

    background-color: #dcb35c;

    color: black;

    padding: 20px 40px;

    margin: 0;
}

.footer-container {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

footer p {
    margin: 0;
}

.room-detail-teaser {
    display: block;

    width: 100%;

    height: 100vh;

    background-repeat: no-repeat;

    background-position: center center;

    background-size: cover;

    margin: 0;

    padding: 0;

    position: relative;
}

.room-detail-teaser .teaser-text {
    position: absolute;

    top: 120px;

    left: 40px;

    color: white;

    text-align: left;
}

.room-detail-teaser h1 {
    font-family: "Advent Pro", sans-serif;

    font-size: 4rem;

    margin: 0;

    font-weight: normal;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.room-detail-teaser small {
    font-family: "Open Sans", sans-serif;

    font-size: 1.5rem;

    display: block;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
