/*
Theme Name: Omas beste Responsive Theme
Theme URI: 
Version: 1.0
Description: HTML5 responsive template .
Author: Gib
*/

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

body {
    font-family: 'Alice', serif;
    background-color: #ecdec1;
    color: #5A3D31;
}

header {
    padding: 20px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-size: 1.2rem;
    font-family: 'Aleo';
    text-decoration: none;
    color: #5A3D31;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #cc8124;
}

.hero {
    /*background-color: #5A3D31;*/
    color: #000;
    text-align: center;
    padding: 50px 20px;
    /*background-image: url(img/hero-bg.png);*/
}

.hero h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
}

.products-section,
.recipes-section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    text-transform: uppercase;
}

.product-grid,
.recipe-grid {}

.product-item,
.recipe-item {
    /*background-color: #FFF;*/
    /*border: 1px solid #D4A017;*/
    padding: 20px;
    text-align: center;
    /* Responsive Breite */
}

.product-item img,
.recipe-item img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

.recipe-item img {
    margin-bottom: 10px;
    border-radius: 30px;
}

.button {
    font-family: 'Aleo';
    font-weight: 600;
    display: inline-block;
    background-color: #1b0802;
    color: #FFF;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
}

.button:hover {
    background-color: #cc8124;
}

footer {
    background-color: #5A3D31;
    color: #FFF;
    padding: 20px;
    text-align: center;
}

footer .social-links a {
    color: #FFF;
    text-decoration: none;
}

footer .newsletter {
    margin-top: 20px;
}

footer .newsletter input {
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
}

footer .newsletter button {
    padding: 10px 20px;
    background-color: #D4A017;
    color: #FFF;
    border: none;
    cursor: pointer;
    border-radius: 0 20px 20px 0;
}