@font-face {
    font-family: "Sequel";
    src: url('/static/font/Sequel_Demo.ttf') format('truetype');
}

@font-face {
    font-family: "Odachi";
    src: url('/static/font/Odachi.woff') format('woff'),
        url('/static/font/Odachi.otf') format('opentype');
}

@font-face {
    font-family: "Neozoic";
    src: url('/static/font/Neozoic.ttf') format('truetype');
}

:root {
    --brand-color: #697657;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    margin-bottom: 100px;
}

header {
    border-bottom: 5px solid var(--brand-color);
    background-color: #333;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    contain: content;
}

h1 {
    color: #697657;
    font-family: "Sequel";
    font-size: 3em;
    margin: 0;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

/*
.logo img {
    margin-right: 10px;
}
*/

.logo img {
    padding: 9px;
}

.logo:hover img, .logo.active img {
    background-color: #697657;
}

.logo h1 {
    padding: 7px;
    margin: 0;
    line-height: 1;
}

.logo:hover h1, .logo.active h1 {
    background-color: #fff;
}

.staytuned {
    font-size: 6em;
    color: #666;
}

h2, .room .name {
    
}

a {
    color: #697657;
    text-decoration: wavy;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

section {
    max-width: 800px;
    
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section.placeholder {
    text-align: center;
}


ul.rooms {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*
    display: flex;
    flex-direction: row;
    
    justify-content: space-evenly;

    flex-wrap: wrap;
*/
    background-color: #69765720;
    padding: 20px 0;
    margin: 20px 0;
    border-radius: 5px;
    /*
    justify-content: flex-start;
    align-items: stretch;
    */
}

.frame {
    height: 400px;
    background-size: cover;
    background-position: center center;
    /*backdrop-filter: blur(5px);*/
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: #697657;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame span {
    backdrop-filter: blur(5px) contrast(50%);
    display: block;
    padding: 10px 100px;
    color: black;
    font-size: 1.5em;
}

#header {
    /*background-image: url(/static/images/website_header_01.png);*/
    background-image: url(/static/images/IMG_4294.jpg);
    height: calc(100vh - 140px - 50px);
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
    display: flex;
}

#header h1, #header h2 {
    /*background-color: white;*/
    padding: 5px;
    display: inline-block;
    margin: 0;
    backdrop-filter: blur(10px) sepia(150%) saturate(50%);
}

#header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.room img {
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 50%;
    margin: 10px 0;
}

.room {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /*align-items: center;*/
    text-align: center;
}

.room .name {
    font-weight: bold;
    font-size: 1.25em;
}

.room > span + span {
    margin-top: 10px;
}

.room span {
    flex-wrap: nowrap;
}

.room {
    padding: 50px 15px;
    min-width: 150px;
}

.room.featured {
    font-size: 1.25em;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    min-width: 200px;
    background-color: #ffffff; /* 69765720 */
    box-shadow: 0 0 3px #ccc;
}

.room .features {
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: left;
}

.features {
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    padding: 5px;
}

.prices {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 40px !important;
}

.prices > span {
    margin: 5px 0;
}

.prices .hour::after {
    white-space: pre;
    content: "\A/ Stunde*";
    font-size: 0.8rem;
    color: #999;
}

.prices .day::after {
    white-space: pre;
    content: "\A/ Tag*";
    font-size: 0.8rem;
    color: #999;
}

.prices .weekend::after {
    white-space: pre;
    content: "\A/ Wochenende*";
    font-size: 0.8rem;
    color: #999;
}

.prices .month::after {
    white-space: pre;
    content: "\A/ Monat*";
    font-size: 0.8rem;
    color: #999;
}

.calendar .layout, .calendar .dates {
    display: grid;
}


.calendar.week .layout {
    grid-template-columns: 125px 1fr 1fr 1fr 1fr 1fr;
}

.calendar.week .dates {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.calendar .header {
    padding: 2px;
    background-color: #ccc;
    font-weight: bold;
    height: 25px;
}

.calendar .slot {
    padding: 2px;
    height: 20px;
}

.calendar .layout .day {
    border-left: 1px solid #999;
}

.calendar {
    position: relative;
}

.calendar .dates {
    position: absolute;
    left: 125px;
    right: 0;
    bottom: 0;
    top: 29px;
}

.calendar .slot.used, .calendar .slot.reserved {
    width: calc(100% - 1px);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 1px;
}

.slot.used {
    background-color: #697657;
    border-style: solid;
    border-collapse: collapse;
    border-width: 1px 0px 1px 0px;
    border-color: #333;
}

.slot.reserved {
    background-color: #ccc;
}

.calendar .layout .slot:nth-child(2n) {
    background-color: #f0f0f0;
}

.calendar .dates .day {
    position: relative;
}

.calendar .dates .day .slot {
    position: absolute;
}
