/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
font-family: Yokelvision;
src: url("Yokelvision.otf");
}
@font-face {
    font-family: Futura;
    src: url("FuturaPTLight.otf");
    }

body {
    font-family: Futura;
    color: #805222;
    background-color: #FEF1D8;
}
h1,h2{
    font-family: Yokelvision;
}
h1{
    font-size: 4.2vw;
}
h2{
    font-size:3.2vw;
}

/* Header */
header {
    text-align: left;
    padding: 0px;
    background-color: #FEF1D8;
    position: relative;
}

.banner{
    display:flex;
    justify-content: flex-end;
}
.logo {
    width:fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-left: 10%;
    margin-top: 32px;

}

.logo img {
    width: 30%;
    height: auto;
}

.slogan {
    font-style: italic;
    color: #805222;
    margin-top: 12%;
    margin-left: 10%;
    font-size: 3.2vw;
}

.waffle-image {
    text-align: right;
    margin-right: 0px;
    margin-left:15%;
}

.waffle-image img {
    width: 100%;
    height: auto;
}

/* Products Section */
.products {
    background-color: #805222;
    color: white;
    padding-left: 5%;
    padding-top:40px;
    padding-bottom:65px;
    margin-top: 20px;  
    position: relative;
    z-index: 1;
    margin-top: 40px;
}
.products::before {
    background: inherit;
    bottom: 0;
    content: '';
    display: block;
    height: 90px;
    left: 0;
    position: absolute;
    right: 0;
    transform: skewY(-1.5deg);
    transform-origin: 100%;
    z-index: -1;
    
}
.products::after {
    background: inherit;
    top: 0;
    content: '';
    display: block;
    height: 90px;
    left: 0;
    position: absolute;
    right: 0;
    transform: skewY(1.5deg);
    transform-origin: 100%;
    z-index: -1;
    
}

.article{
    display:flex;
    margin-top: 50px;
}

.article-child{
    padding:5%;
}

/* Find Us Section */
.find-us {
    background-color: #FEF1D8;
    padding: 5%;
    text-align: center;
    position: relative;
}

/* Background Pattern for Find Us Section */
.find-us {
    background-image: url('background.png'); /* Replace with actual pattern image */
    background-size: 1440px 940px;
    background-repeat: repeat;
}

.find-us h2 {
    background-color: #FEF1D8;
    display: inline-block;
    padding: 10px;
    border: 2px solid #805222;   
    width: 90%;
    height: 500px;
    margin-top: 100px;
    margin-bottom: 200px;
    text-align: left;
    padding-left: 5%;
}
