* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #e2d5c1;
    font-family: "Golos Text", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

body {
    background: url('./img/rest-dayberg-site.svg') repeat center center #1f3124;
    background-size: cover;
    text-align: center;
}
.container {
    width: 100%;
    display: grid;
    grid-template-rows: auto auto auto;
    justify-items: center;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}
h1 {
    line-height: 1.5em;
    font-size: 2.5em;
    font-weight: 500;
}
.logo {
    background: url('./img/logo-green.webp') no-repeat center;
    background-size: 70%;
    background-color: #e2d5c1;
    min-width: 300px;
    height: 180px;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heroWide {

    display: grid;
    grid-template-columns: 1fr minmax(450px, 1fr) 1fr;
    gap: 20px;
    width: 100%;
    align-items: center;
}
.heroWide div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heroWide .content {
    font-weight: 100;
    width:auto;
    max-width: 550px;
    min-width: 15%;
    text-align: center;
    padding: 20px;
    line-height: 1.5em;
}

.heroWide .image-box {
    margin: 0px 20px;
}
.heroWide .image-box img {
    max-width: 400px;
    max-height: 660px;
}

.heroWide .box-left img {
    align-self: flex-end;
}
.heroWide .box-right img {
    align-self: flex-start;
}



.cta {
    position: absolute;
    top: 700px;
    background-color: #966037;
    font-family: "Playfair Display", serif;
    padding: 15px 30px;
    font-size: 28px;
    line-height: 1.1em;
    font-weight: bold;
    width: 1100px;
    max-width: 1100px;
    z-index: -1;
}
.cta i {
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 100;
    font-size: 0.8em;
}



@media (min-width: 1023px)  {
    .heroMob {
        display: none;
    }
}


@media (max-width: 1022px) {
    .heroWide {
        display: none;
    }

    .container {
        width: 100%;
        display: grid;
        grid-template-rows: auto auto;
        justify-items: center;
    }
    .heroMob {
        width: 100vw;
        max-width: 100%;
        height: auto;;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;

    }
    .heroMob .content {
        display: block;
        background: url('img/food-left.webp') center center;
        background-size: contain;
        background-position: top;
        background-repeat: no-repeat;
        width: 100%;
        height: 800px;

    }
    .heroMob h1 {
        padding: 70px 0px;
        font-size: 28px;
        font-weight: bold;
        width: 70%;
    }


    .image-box {
        width: 100%;
        /*display: flex;*/
        justify-content: center;
    }
    .image-box img {
        width: 100%;
        height: auto;
    }

    .cta {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100vw;
        padding: 50px 0px;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(20px);
        background: rgba(50, 50, 50, 0.6);
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        z-index:1;
    }


}

.mau {
    display: inline-block;
    padding: 12px 48px 12px 48px; /* extra space for icon */
    margin: 20px auto;
    background-color: #966037;
    color: #e2d5c1;
    font-family: "Playfair Display", serif;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 40px;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease, transform 0.2s ease;

    /* SVG icon as background */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23e2d5c1" viewBox="0 0 24 24"><path d="M3 6h18M3 12h18M3 18h18"/></svg>');
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 20px;
}

.mau:hover {
    background-color: #b7794b;
    transform: scale(1.05);
}