/***************************************
GENERAL CSS
***************************************/
@font-face {
    font-family: 'dienstag';
    src: url('./fonts/Dienstag-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'dienstag';
    src: url('./fonts/Dienstag-Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'freight-big-pro';
    src: url('./fonts/FreightBigPro-Bold.ttf');
    font-weight: 600;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

/***************************************
FONTS SETUP
***************************************/
h1, h2, h3 {
    text-rendering: optimizeLegibility;
}

h1 {
    font-family: 'Abril Fatface', cursive;
    font-weight: 900;
    font-style: normal;
    font-size: 85px;
    letter-spacing: .12em;
    line-height: 1.05em;
    text-transform: uppercase;
    margin: .35em 0;
    word-wrap: break-word;
    color: #FFF;
}

h2 {
    font-family: 'freight-big-pro';
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    letter-spacing: .02em;
    line-height: 1.3em;
    text-transform: none;
    color: #d9d9d9;
}

h3 {
    font-family: dienstag;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .2em;
    line-height: 2em;
    word-wrap: break-word;
    color: #d9d9d9;
}
h3 strong {
    text-transform: uppercase;
}
h3:not(:last-child) {
    margin-bottom: 1.5em;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: .13em;
    line-height: 1.5em;
    text-transform: none;
    color: #e6e6e6;
}
p strong {
    font-weight: 700 !important;
}

/***************************************
BUTTONS SETUP
***************************************/
a.button-style {
    font-size: 11px;
    font-family: dienstag;
    font-weight: 700;
    line-height: 0;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .7em;
    color: rgba(255,255,255,.9);
    border-width: 2px;
    border-style: solid;
    padding: 1em 2.5em;
    text-decoration: none;
    border-color: rgba(255,255,255,.9);
    transition: 0.1s background-color linear, 0.1s color linear;
}
a.button-style:hover {
    background-color: #FFF;
    color: #000 !important;
    cursor: pointer;
}
a.arrow-down {
    display: inline-block;
    width: 3%;
    height: 2em;
    background-image: url('./assets/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 2em;
    left: 48.5%;
    transition: all .5s ease;
}
a.arrow-down:hover {
    bottom: 2.5em;
}

h3 a,
h3 a:hover {
    color: #d9d9d9;
    text-decoration: underline;
}

/***************************************
HERO SECTION
***************************************/
#hero {
    background-image: url('./assets/hero.jpeg');
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;

}
#hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.65);
    top: 0;
    left: 0;
}
.extra-padding {
    padding-top: calc(110vh/4);
}

/***************************************
INFO SECTION
***************************************/
#info {
    background-color: #1A1C1D;
}

.tiny-font h3 {
    font-size: 55% !important;
}

iframe {
    border-radius: 6px;
}

a.fb,
a.ig,
a.wa,
a.mail,
a.phone {
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1em;
}
a.fb {
    background-image: url('./assets/fb.svg');
}
a.ig {
    background-image: url('./assets/ig.svg');
}
a.wa {
    background-image: url('./assets/wa.svg');
}
a.mail {
    background-image: url('./assets/mail.svg');
}
a.phone {
    background-image: url('./assets/phone.svg');
    margin-right: 0;
}

/***************************************
AUTOPLAY CAROUSEL
***************************************/
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}
.slider {
	background: #1A1C1D;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
	height: 200px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: 100%;
    border-radius: 12px;
}
.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}	
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 12);
}
.slide {
    height: 200px;
    width: 300px;
    margin-right: 2em;
}
.slide img {
    height: 200px;
    width: 300px;
    object-fit: cover;
    border-radius: 6px;
}

/***************************************
MODAL CSS
***************************************/
.modal-dialog {
    max-width: 1200px !important;
}
.modal-content {
    border-radius: 0;
    background-image: url('assets/paper.jpg');
    background-size: contain;
}
.modal-header {
    border-bottom: none !important;
}
.modal-body {
    padding: 4rem;
}
.modal-title {
    color: #1A1C1D;
    text-transform: uppercase;
    font-size: 1.2em;
    width: 100%;
    text-align: center;
    margin: 2em 0 !important;
}
.modal img {
    width: 90%;
    border-radius: 6px;
}
.modal-content .menu h3 {
    padding-top: 2em;
    color: #1A1C1D;
}
.menu {
    margin-bottom: 1.5em;
}
.type-food {
    color: #1A1C1D;
    font-size: 1em;
    text-transform: uppercase;
}
.modal-content .container {
    border: 5px double #1A1C1D;
}
.close {
    display: none;
}

/***************************************
MEDIA QUERIES
***************************************/
@media only screen and (max-device-width: 1366px) {
    .parallax {
      background-attachment: scroll;
    }
  }


@media screen and (max-width: 480px) {
    .col-sm-4 {
        margin-bottom: 4em;
    }
    .col-sm-5 {
        padding-top: 3em;
    }
    .modal-body {
        padding: 2rem;
    }
    .close {
        display: inline;
    }
}