@font-face {
    font-family: "Plain Light";
    src: url("fonts/Plain-Light.woff2") format("woff2"), url("fonts/Plain-Light.woff") format("woff"), url("fonts/Plain-Light.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "OptimaLTPro-Roman";
    src: url("fonts/OptimaLTPro-Roman.woff2") format("woff2"), url("fonts/OptimaLTPro-Roman.woff") format("woff"), url("fonts/OptimaLTPro-Roman.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "OptimaLTPro-Medium";
    src: url("fonts/OptimaLTPro-Medium.woff2") format("woff2"), url("fonts/OptimaLTPro-Medium.woff") format("woff"), url("fonts/OptimaLTPro-Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --c-blacbk: #000;
    --c-white: #fff;
    --c-background: rgb(255, 240, 220);
    --c-link: rgb(0, 170, 60);
    --c-line: 1px solid black;
    --c-line-hover: 1px solid rgb(0, 170, 60);
    --c-line-half: 0.5px solid black;
}

html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0
}

html {
    font-family: "Plain Light", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

/* Reset some default styles */
body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--c-background);
    scroll-behavior: smooth;
}

header {
    padding-top: 3rem;
}


h1 {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.9rem;
    letter-spacing: 0.15px;
}

h2 {
    font-size: 3rem;
    font-weight: normal;
    line-height: 3rem;
    font-family: "OptimaLTPro-Roman";
    letter-spacing: -1px;
}

h3 {
    font-size: inherit;
    line-height: 1.5rem;
    font-family: "Plain Light";
    font-weight: normal;
    letter-spacing: 0.15px;
}

h4 {
    font-size: 1.6rem;
    line-height: 2rem;
    font-family: "OptimaLTPro-Roman";
    font-weight: normal;
    letter-spacing: -0.15px;
}

p {
    font-size: inherit;
    line-height: 1.5rem;
    font-family: "OptimaLTPro-Roman";
    letter-spacing: 0.15px;
}

li {
    font-size: inherit;
    line-height: 1.5rem;
    font-family: "OptimaLTPro-Roman";
    letter-spacing: 0.15px;
    margin-left: 1.3rem;
}

a {
    font-size: inherit;
    color: black;
    text-decoration: none;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--c-link);
    text-decoration: none;
    text-underline-offset: 0.2em;
}

.main-content a {
    font-size: inherit;
    color: black;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.main-content a:hover {
    color: var(--c-link);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

img {
    position: relative;
    align-items: center;
    width: 100%;
    border-top: var(--c-line);
    border-bottom: var(--c-line);
    border-left: var(--c-line-half);
    border-right: var(--c-line-half);
}

video {
    position: relative;
    align-items: center;
    width: 100%;
    border-bottom: var(--c-line);
}

.menu-text {
    font-size: 1.3rem;
    font-family: "OptimaLTPro-Roman";
    letter-spacing: 0.5px;
}

label {
    font-size: inherit;
    font-family: "OptimaLTPro-Roman";
    padding-bottom: 0.25rem;
}

input {
    padding: 0.5rem;
    border-radius: 5px;
    border: var(--c-line);
    font-size: 0.9rem;
    font-family: "Plain Light", Arial, Helvetica, sans-serif;
}

textarea {
    padding: 0.5rem;
    border-radius: 5px;
    border: var(--c-line);
    font-size: 0.9rem;
}

input[type="checkbox"] {
    padding: 0.5rem;
    border-radius: 5px;
    border: var(--c-line);
    font-size: 0.9rem;
}

.hide {
    display: none;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.submit {
    padding: 0.5rem;
    border-radius: 30px;
    border: var(--c-line);
    width: 7rem;
    font-size: 1rem;
    background-color: var(--c-background);
    cursor: pointer;
}

.submit:hover {
    padding: 0.5rem;
    border-radius: 30px;
    border: var(--c-line-hover);
    width: 7rem;
    font-size: 1rem;
    background-color: var(--c-background);
    cursor: pointer;
    color: var(--c-link);
}



.form-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.form-items {
    display: flex;
    flex-direction: row;
    padding-bottom: 1rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--c-background);
    border: 1px;
    z-index: 1000;
    padding: 15px;
    border-bottom: var(--c-line);
}

.menu-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.image {
    width: 50%;
}

.left {
    width: 50%;
    padding-right: 2rem;
}

.right {
    width: 50%;
    padding-left: 2rem;
}

.left-text {
    width: 50%;
    padding: 3rem 2rem 5rem 15%;
    border-right: var(--c-line-half);
}

.right-text {
    width: 50%;
    padding-left: 2rem;
    padding: 3rem 15% 5rem 2rem;
    border-left: var(--c-line-half);
}

.left-text-upper {
    width: 50%;
    border-right: var(--c-line-half);
    padding: 5rem 2rem 3rem 15%;
    border-bottom: var(--c-line);
}

.right-text-upper {
    width: 50%;
    padding-left: 2rem;
    border-left: var(--c-line-half);
    border-bottom: var(--c-line);
    padding: 5rem 18% 3rem 2rem;
}

.left-text-single {
    width: 50%;
    padding: 5rem 2rem 5rem 15%;
    border-right: var(--c-line-half);
}

.right-text-single {
    width: 50%;
    padding-left: 2rem;
    padding: 5rem 15% 5rem 2rem;
    border-left: var(--c-line-half);
}

.right-text-double {
    padding: 3rem 15% 5rem 2rem; /* andré */
}

.right-text-double-line {
    padding: 0rem 15% 5rem 2rem; /* andré */
}

.left-form {
    width: 50%;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
}

.right-form {
    width: 50%;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
}

.text {
    padding: 5rem 18% 5rem 15%;
}

.text-line {
    padding: 5rem 18% 3rem 15%;
    border-bottom: var(--c-line);
}

.line-top {
    padding: 2rem 0rem 4rem 0rem;
    border-top: var(--c-line);
    display: flex;
    justify-content: center;
}

.line-bottom {
    padding: 15px 0rem 15px 0rem;
    border-bottom: var(--c-line);
    display: flex;
    justify-content: center;
}

.space {
    padding-bottom: 1.5rem;
}

.space-small {
    padding-bottom: 1rem;
}

.space-big {
    padding-bottom: 3rem;
}

.headline {
    padding: 5rem 18% 0rem 15%;
}

.headline-second {
    padding: 0rem 18% 0rem 15%;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.text-container {
    display: flex;
    flex-wrap: wrap;
}

.text-small {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 15% 1rem 15%;
}

.text-small-second {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 15% 5rem 15%;
}

.menu-mobile {
    display: none;
}

.book-align {
    display: flex;
    justify-content: center;
}

.book-align.hide {
    display: none;
}

.travels {
    bottom: 1rem;
    right: 1rem;
    position: fixed;
    z-index: 1;
    width: 13%;
}

.socials {
    display: flex;
    flex-flow: column;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 1;
    text-align: left;
}

.socials-break {
    padding-bottom: 0.5rem;
}

.book {
    position: fixed;
    bottom: 1rem;
    font-family: "Plain Light";
    font-size: 1.3rem;
    color: black;
    background: var(--c-background);
    border: var(--c-line);
    border-radius: 30px;
    cursor: pointer;
    z-index: 1;
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
}

.book:hover {
    text-decoration: none;
    border: var(--c-line-hover);
}

.logo {
    font-size: 1.4rem;
    font-family: "OptimaLTPro-Roman";
    font-weight: normal;
    letter-spacing: 0.5px;
}

.confirmation {
    margin: 2rem 0rem 3rem 0rem;
    color: var(--c-link);
    border: 1px solid var(--c-link);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.back {
    font-family: "Plain Light";
    font-size: 1.3rem;
    color: black;
    background: var(--c-background);
    border: var(--c-line);
    border-radius: 30px;
    cursor: pointer;
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
    text-decoration: none;
}

.book:hover {
    text-decoration: none;
    color: var(--c-link);
}

.copywright {
    padding: 1rem 15% 5.5rem 15%;
    text-align: center;
}

.question {
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
}

.answer {
    padding: 1rem 0rem 1rem 1.5rem;
}

.answer-h1-first {
    padding: 1rem 0rem 0rem 1.5rem;
}

.answer-h1 {
    padding: 0.5rem 0rem 0rem 1.5rem;
}

.details {
    padding: 3rem 15% 5rem 15%;
    max-width: 75rem;
}

.impressum {
    padding: 2rem;
    max-width: 10rem;
}

menu-icon {
    display: block;
    cursor: pointer;
    padding: 20px;
}

header > .space {
    padding: 5rem 18% 5rem 15%;
}

@media screen and (max-width: 900px) {

    html {
	font-size: 18px;
    }

    a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
    }

    .menu-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--c-background);
	border: 1px;
	z-index: 1000;
	padding: 30px;
	border-bottom: var(--c-line);
    }

    .dropbtn {
	position: fixed;
	right: 0.75rem;
	top: 1rem;
	cursor: pointer;
	z-index: 1;
	width: 2.5rem;
	height: 2.5rem;
    }

    .bar {
	display: block;
	height: 1px;
	background-color: black;
	margin: 7px;
	transition: 0.4s;
    }

    .dropbtn.open .bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
    }

    .dropbtn.open .bar:nth-child(2) {
	opacity: 0;
    }

    .dropbtn.open .bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
    }

    .logo-mobile {
	position: fixed;
	left: 1rem;
	top: 1rem;
	font-family: "OptimaLTPro-Roman";
	font-size: 1.4rem;
	letter-spacing: 0.25px;
	font-weight: normal;
	cursor: pointer;
	z-index: 1;
	text-decoration: none;
    }

    .logo-mobile:hover {
	color: black;
    }

    .dropdown-content {
	display: none;
	background-color: #f1f1f1;
	width: 100%;
	background: rgba(198, 146, 86, 0.44);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding-top: 5rem;
	z-index: 3;
    }

    .blur {
	filter: blur(8px);
    }

    .dropdown-content a {
	text-align: left;
	color: black;
	text-decoration: none;
	display: block;
	padding-bottom: 0.4rem;
    }

    .dropdown-content a:last-child {
	padding-bottom: 0rem;
    }

    .menu-link {
	font-family: "OptimaLTPro-Roman";
	font-size: 1.4rem;
	padding: 0rem 0rem 1rem 1rem;
    }

    .link {
	padding-top: 1rem;
	border-top: var(--c-line);
	font-family: "Plain Light";
	font-weight: normal;
	font-size: 1rem;
	padding: 1rem;
    }

    .menu {
	display: none;
    }

    .show {
	display: block;
    }

    img {
  	border-top: var(--c-line);
  	border-bottom: var(--c-line);
  	border-left: none;
  	border-right: none;
    }

    img:last-child {
  	border-top: none;
    }

    .image {
	width: 100%;
    }

    .left {
	width: 100%;
	padding-bottom: 2rem;
    }

    .right {
	width: 100%;
	padding-left: 0rem;
	padding-right: 2rem;
    }

    .left-text {
	width: 100%;
	border-right: none;
	border-bottom: var(--c-line);
	padding: 4rem 1rem 4rem 1rem;
    }

    .right-text {
	width: 100%;
	border-left: none;
	padding: 4rem 1rem 4rem 1rem;
    }

    .right-text-double {
	padding: 4rem 1rem 4rem 1rem; /* andré */
    }

    .right-text-double-line {
	padding: 0rem 1rem 4rem 1rem; /* andré */
    }

    .left-text-upper {
	width: 100%;
	border-right: none;
	border-bottom: var(--c-line);
	padding: 4rem 1rem 4rem 1rem;
    }

    .right-text-upper {
	width: 100%;
	border-left: none;
	padding: 4rem 1rem 4rem 1rem;
    }

    .left-text-single {
	width: 100%;
	border-right: none;
	border-bottom: var(--c-line);
	padding: 4rem 1rem 4rem 1rem;
    }

    .right-text-single {
	width: 100%;
	border-left: none;
	padding: 4rem 1rem 4rem 1rem;
    }

    .details {
	padding: 2rem 1rem 4rem 1rem;
    }

    .headline-second {
	padding: 0rem 18% 0rem 2rem;
    }

    header.text {
	padding-top: 5rem;
    }

    header > .space {
	padding: 4rem 1rem 4rem 1rem; /* andré */
    }

    .text {
	padding: 4rem 1rem 4rem 1rem;
    }

    .headline {
	padding: 4rem 1rem 0rem 1rem;
    }

    .text-container {
	padding: none;
	display: block;
    }

    .form-container {
	padding-right: 0rem;
    }

    .text-line {
	padding: 4rem 1rem 4rem 1rem;
    }

    .menu-mobile {
	display: contents;
    }

    .menu-desktop {
	display: none;
    }

    .answer {
	padding: 1rem 0rem 1rem 0rem;
    }

    .space-big {
	padding-bottom: 2rem;
    }

    .book {
	text-decoration: none;
    }

    .socials {
	display: none;
    }

    .travels {
	display: none;
    }

    .submit {
	color: black;
    }

    .submit:hover,
    .book:hover {
	text-decoration: none;
	border: var(--c-line);
	color: black;
    }

}

/* this is to prevent bot spamming: we set a hidden form field that should not be filled out, and hide out completely for "human" users */
.hp {
    display: none;
}
