/* ROBOTO FONT; NEEDS TO STAY ATOP */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/* COLOR VARIABLES */
:root {
    --main: #D6D6D6;
    --secondary: #333333;
    --tertiary: #FF6961;
}

/* DEBUGGING */
.inner {
    display: none;
}

.debug {
    padding: 500px;
    min-height: 100vh;
}

/* GENERAL SETTINGS */

* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

body {
    margin: 0;
    min-height: 100vh;
}

div {
    min-height:30px;
    min-width:50px;
}

/* FONTS */
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}
  
.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}
  
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}
  
.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}
  
.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}
  
.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}
  
.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}
  
.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}
  
.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}
  
.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}
  
.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* ALIGNMENT, SIZES & FLEXBOXING */

#notopmargin {
    margin-top: 0;
    padding-top: 20px;
}

#nobottommargin {
    margin-bottom: 0;
    padding-bottom: 20px;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
}

.navbar .buttons {
    gap: 1vw;
}

.navbar .logo {
    margin-left: 12px;
}

.navbar .logo img {
    width: 25vw;
    min-width: 180px;
    height: auto;
}

.navbar .buttons, .navbar .booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons2 {
    display: none;
}

.navbar .booking {
    margin-right: 12px;
}

.navbar a {
    height: 50%;
    
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .navbar .buttons {
        display: none;
    }

    .buttons2 {
        display: block;
    }

    .buttons2 a {
        display: block;
        margin: 10px 10px;
    }
}

.kontakt {
    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 50vh;
    left: 12vw;
    width: 75vw;
    background-color: var(--main);
    position: fixed;
    z-index: 1001;
}

.kontakt .links, .kontakt .rechts {
    flex: 1;
    height: 100%;
}

.kontakt .mitte {
    flex: 2;
}

.kontakt .rechts button {
    float: right;
    margin: 10px;
}

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

    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.cards div {
    flex-basis: 20%;
    justify-content: center;
    aspect-ratio: 1.5;
    background-color: var(--main);

    display: flex;
    align-items: center;
}

.cards div p {
    text-align: center;
}

.cards .hiddencard {
    display: none;
}

@media only screen and (max-width: 600px) {
    .cards {
        flex-wrap: wrap;
        align-content: space-around;
        row-gap: 20px;
    }

    .cards div {
        flex-basis: 45%;
    }
}

.footer, .footer * {
    display:flex;
    justify-content: space-evenly;
    align-content: center;
}

.footer a {
    padding: 2px 5px;
}

/* FONT SIZES & COLOR, BORDERS */

.navbar a {
    color: black;
    border: 2px solid var(--secondary);
    border-radius: 10px 0 10px 0;

    font-size: 2vw;
}

.buttons2 a {
    color: black;
    font-size: 16px;
    border: 2px solid var(--secondary);
    border-radius: 10px 0 10px 0;
}

.footer a {
    color: black;
    border: 2px solid var(--secondary);
    border-radius: 10px;
}

.kontakt {
    font-size: 2vw;
    border: 2px solid var(--secondary);
    border-radius: 10px 0 10px 0;
}

.text-content .header {
    text-align: center;
    font-size: 2vw;
}

.text-content .cards div {
    border-radius: 10px;
    border: 2px solid var(--secondary);
    font-size: 1.5vw;
}

.cards div.long {
    font-size: 1vw;
}

.text-content .innertext {
    font-size: 18px;
    padding: 0 30px;
}

.text-content .innertext span {
    font-weight: 700;
}

.text-content .emphasis {
    text-align: center;
    text-decoration: underline;
    font-size: 2vw;
}

@media only screen and (max-width: 600px) {
    .navbar a,
    .buttons2 a,
    .kontakt, 
    .text-content .header, 
    .text-content .cards div,
    .text-content .innertext, 
    .text-content .emphasis 
    {
        font-size: 16px;
    }
    .text-content .cards .long
    {
        font-size: 12px;
    }
}

/* BACKGROUND COLORS */

.anruf {
    background-color: var(--tertiary);
}

.booking a {
    background-color: var(--main);
}

.kontakt {
    background-color: var(--tertiary);
}

.navbar, .text-content, .buttons2 {
    background-color: var(--main);
}

.cards .long {
    background-color: var(--tertiary);
}

.footer {
    background-color: var(--tertiary);
}

/* FONT SIZES & COLOR, BORDERS */

li {
    font: inherit;
}

/* MISCELLANEOUS */
    /* BUTTON HOVERING */

    .navbar a:hover {
        background-color: var(--secondary);
    }
    
    .buttons2 a:hover {
        background-color: var(--secondary);
    }
    
    .booking a:hover {
        background-color: var(--secondary);
    }

    /* LINKS */

    a {
        text-decoration: none;
    }

    /* PROPERTIES FOR SCROLLABLE NAVBAR */

    .anruf, .navbar, .buttons2 {
        position: fixed;
        left: 0px;
        right: 0px;
        z-index: 1000;
    }

    .anruf {
        top: 0;
    }