
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html{
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

.row {
    max-width: 1140px;
    margin: 0 auto;
}
section{
    padding: 80px 0;
}

h1, h2, h3{
   
    font-weight: 300;
    text-transform: uppercase;
    
}

h1{
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2{
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3{
    font-size: 110%;
    margin-bottom: 15px;
    color: darkorange;
}

h2:after{
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}
h3:after{
    display: block;
    height: 1px;
    background-color: #e67e22;
    content: " ";
    width: 70px;
    margin: 0 auto;
    margin-top: 15px;
}

.long-copy{
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

.box{
    padding: 1%;
}

.box p{
    font-size: 90%;
    line-height: 145%;
}

.icon-big{
    font-size: 300%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
}

.btn:link,
.btn:visited,
input[type=submit]{
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.3s, border 0.3s, color 0.3s; 
}

.btn-full:link,
.btn-full:visited,
input[type=submit]{
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
    margin-right: 20px;
}
.btn-ghost:link,
.btn-ghost:visited{
    border: 1px solid #e67e22;
    color: #e67e22;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type_submit]:active{
    background-color: #cf6d17;
    border: 1px solid #cf6d17;
    color: #fff;
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

#slova{
    color:whitesmoke;
}

.hero-text-box {
    width: 1140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo{
    height: 130px;
    width: auto;
    float: left;
    margin-top: 20px;
    border-radius: 50%;
    opacity: 0.8;
}

.logo:hover{
    border: 3px solid #fff;
    transform: scale(1.2);
    opacity: 1;
    transition: transform 0.5s, opacity 0.5s, border 0.5s;
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 60px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}
.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #e67e22;
}

.section-features .long-copy {
    margin-bottom: 30px;
}

.section-meals {
    padding-top: 0;
}

.meals-showcase {
    width: 100%;
    list-style: none;
}

.section-features p {
    text-align:justify;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}
.meal-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.meal-photo img {
    opacity: 0.7;
    width: 100%;
    height: auto;
    transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s;
}

.meal-photo img:hover {
    opacity: 1;
    transform: scale(1.03);
}

.contact-form{
    width: 60%;
    margin: 0 auto;
}

input [type=text], input [type=email], select, textarea{
    width: 100%;
    padding: 7px;
    border-radius: 5px;
}

footer{
    background-color: #333;
    text-align: center;
    padding-bottom: 10px;
}

.kontakt{
    list-style: none;
    padding: 30px 0;
}

.kontakt li{
    padding: 5px 0;
}

footer h5{
    font-family: 'Tangerine', cursive;
    font-size: 130%;
    padding-bottom: 10px;
}