﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

*,
*:before,
*:after{
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    padding: 0;
    margin: 0;
}
html{
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

}
body {
    background: #d43b3f url(../images/background.jpg) center center no-repeat;
    background-size: cover;
    min-height: 100vh;
    font-size: 1em;
}

section{
    width: 900px;
    margin: 5em auto 0 auto;
}
.icons--food{
    text-align: center;
}
.icons--food img {
    height: 70px;
    width: auto;
    margin: 0 auto;
}
h1{
    font-size: 4.5em;
    font-weight: 300;
    line-height: 1em;
    text-align:center;
    padding: 0;
    margin: 0 0 2em 0;
}
h2 {
    font-size: 2.88em;
    font-weight: 300;
    line-height: 1em;
    text-align: center;
    padding: 0;
    margin: 0 0 .25em 0;
}
hr{
    border: none;
    background:rgba(255,255,255,.5); 
    height: 2px;
    width: 60%;
    margin: 0 auto;
}
p{
    font-size: 1.1em;
    line-height: 1.5em;
}
.icons--seats{
    position: relative;
    width: 80%;
    margin: 4em auto 2em auto;
}
.icon--seatsImg {
    margin-left: 21%;
}
.qrCode {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -64px;
    right: -157px;
    border: 1px solid rgba(255,255,255,.5);
    width: 160px;
    height: 160px;
    padding: .5em;
}
    .qrCode img{
        max-width: 140px;
        margin-left: 0;
    }
    .button--container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        margin: 0 0 4em 0;
    }
.button--link{
    background: rgba(255,255,255,0);
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: white;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    min-width: 300px;
    padding: .5em 2em;
    margin: 0 1em;
}
    .button--link:hover {
        background: rgba(255,255,255,.15);
        transition: .5s all ease-in-out;
    }
.ttkLogo{
    text-align: center;
}
    .ttkLogo h3 {
        color: rgba(255,255,255,.5);
        font-weight: 300;
        padding:0;
        margin: 0;
        }
    .ttkLogo img{
        width: 160px;
    }

.comingSoon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
}

.comingSoon .contentBlock{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 2;
}
    .comingSoon .contentBlock h1{
        margin-bottom: 0;
    }
    .comingSoon .contentBlock h1 span {
        display: block;
        font-size: .5em;
        font-weight: 600;
    }

    .comingSoon .contentBlock .button--link{
        width: 300px;
        margin: 4em auto 0 auto;
    }

    @media screen and (max-width: 1060px) {
        section{
        width: 100%;
        padding: 0 40px;
    }
    h1 {
        margin-bottom: 1.5em;
    }

    .icons--seats {
        width: 70%;
        margin-top: 6em;
    }

    .icon--seatsImg {
        margin-left: 10%;
    }
}

@media screen and (max-width: 900px) {

    .icons--seats {
        width: 60%;
        margin-left: 6em;
    }

    .icon--seatsImg {
        margin-left: 0;
    }
}
@media screen and (max-width: 700px){
    section{
        margin-top: 3em;
    }
    h1{
        font-size: 3.5em;
        margin-bottom: 1.5em;
    }
    .icons--seats {
        width: 70%;
        margin-left: 0;
    }
    .qrCode{
        right: -140px;
        width: 140px;
        height: 140px;
    }
    .qrCode img {
        width: 120px;
    }
    .button--container {
        flex-wrap: wrap;
        margin-bottom: 2em;
    }
    .button--link{
        margin-bottom: 1em;
    }
}
@media screen and (max-width: 500px){
    .qrCode {
        top: -60px;
        right: -125px;
        width: 120px;
        height: 120px;
    }
        .qrCode img {
            width: 100px;
        }

}

