/* Web Font formats: truetype wird meistens unterstützt! */
@font-face {
    font-family: 'Futura Lt BT';
    src: 
        url('fonts/FuturaBT-LightItalic.ttf') format('truetype'),
        url('fonts/FuturaBT-LightItalic.woff2') format('woff2'),
        url('fonts/FuturaBT-LightItalic.woff') format('woff');

    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Futura Lt BT';
    src:
        url('fonts/FuturaBT-Light.ttf') format('truetype'), 
        url('fonts/FuturaBT-Light.woff2') format('woff2'),
        url('fonts/FuturaBT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Futura Lt BT', Arial, sans-serif;
    font-size: 20px; /* base text size */
}
h1 {
    /* oder gibt es da noch eine andere? */
    font-family: 'Futura Lt BT', Arial, sans-serif;
}
h1.title {
    text-align: center;
    font-size: 4rem;
    margin-top: 2%;
    margin-bottom: 1%;
}
h2.title {
    text-align: center;
    font-size: 3rem;
    margin: 2% auto;
}
/* margin + padding oben/unten anpassen! */
p.subtitle {
    margin-top: 1%;
    text-align: center;
    font-size: 2rem;
    color: #800032;
}
p {
    font-family: "Futura Lt BT", Arial, sans-serif; /* Helvetica? */
}
a {
    color: #800032;
    text-decoration: none;
}
a:hover {
    color: #400019;
}
.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}
.banner {
    background-color: #400019;
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
}
.banner .text {
    /* word-wrap: none; */
    /* overflow: hidden; */
    font-size: inherit;
}
.row {
    padding-bottom: 2%;
}
.col {
    display: inline-block;
    width: 32vw;
    width: 32%; /* fallback */
    vertical-align: top;
    box-sizing: border-box;
    padding: 1%;
}
.btn {
    color: #800032;
    padding: 0.5rem 2rem;
    border: 1px solid;
    text-align: center;
}
.btn:hover {
    color: #ffffff;
    background-color: #800032; 
}
.center {
    margin: 0 auto;
}
.text-mid {
    text-align: center;
}
.text_3 {
    font-size: 3rem;
}
.text_2 {
    font-size: 2rem;
}
.p-t2 {
    padding-top: 2rem;
}
.p-x2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.header {
    max-height: 80vh;
    /* max-height: 65%;   */
    width: 100%;
    margin-top: 0;
    background-image: url('img/sw_piraten-meer-xl.jpg');
    background-position: 0 30%; /* nur für DIESES Bild! */
    background-size: cover;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
} 
.header h1 {
    font-size: 4rem;
}
.header .left {
    width: 33%;
    display: inline-block;
    height: 100%;
    padding: 5%;
    box-sizing: border-box;
}
.header .left .logo {
    margin: auto;
    max-width: 70%;
}
.header .right {
    width: 66%;
    display: inline-block;
    height: 100%;
    padding: 5%;
    box-sizing: border-box;
    vertical-align: top;
}
.header .right .quote {
    font-size: 1.8rem;
    font-style: italic;
}
.header .right .contact {
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0.5); /* transparent background */
    padding: 3%;
}
.opening-hours {
    text-align: center;
}
.opening-hours .hours {
    display: block;
    font-size: 1.5rem;
}
.contact {
    text-align: center;
}
.food-preview img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    max-width: 100%;
}
.servings h3 {
    /* text-transform: uppercase; */
    margin-top: 1%;
    color: #400019;
    font-weight: bold;
    font-size: 2rem;
    /* text-align: center; */
}
.serving {
    margin-bottom: 3%;
}
.serving .serving-name {
    text-transform: uppercase;
    color: #800032;
    display: inline-block;
}
.serving .serving-desc {
    display: block;
}
.serving .additional {
    display: block;
}
.serving .price {
    float: right;
    color: #800032;
}
.footer {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .banner .text {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 1500px) {
    .header {
        background-image: url('img/sw_piraten-meer-lg.jpg');
    }
    .header .left .logo {
        max-width: 80%;
    }
    .food-preview img {
        height: 400px;
    }
}
@media only screen and (max-width: 1200px) { /* laptop and landscape tablet */
    .container {
        width: 90%;
    }
    .header {
        background-image: url('img/sw_piraten-meer-md.jpg');
    }
    .header .left .logo {
        max-width: 100%; 
    }
    .food-preview img {

    }
}
@media only screen and (max-width: 1000px) {
    .col {
        width: 49vw;
        width: 49%;
    }
    .hidden-sm-down {
        display: none;
    }
    .food-preview img {
        height: auto;
        max-height: 250px;
    }
}
@media only screen and (max-width: 800px) { /* tablet and big landscape phone screens */
    .col {
        width: 100%;
    }
    .header {
        max-height: 50vh;
        max-height: 50%;
        background-image: url('img/sw_piraten-meer-sm.jpg');
    }
    .food-preview img {
        display: block;
        margin: 2% auto; /* vertically, horizontally */
    }
}
@media only screen and (max-width: 600px) {
    .container {
        width: 95%;
    }
    .header {
        background-image: none;
        color: #000000;
    }
    .header .left {
        display: block;
        width: 100%;
    }
    .header .right {
        display: none; /* Quote entfernen - besser andere Lösung? */
    }
    .serving .price {
        display: block;
    }
}
