@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jost";
    background-image: url(webbg.png);
    background-repeat:no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.menu-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    background: rgba(51, 51, 51, 0.7);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.5);
    border-radius: 8px;
}
h1, h3 {
    text-align: center;
    color: #eb9635;
}
.menu-section {
    margin-bottom: 20px;
}
.menu-item {
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: none; 
}


.menu-section .menu-item:last-child {
    border-bottom: 1px solid #eb9635;
}


.menu-item:has(+ .menu-section) {
    border-bottom: 1px solid #eb9635;
}



.price {
    font-weight: bold;
    color: #e67e22;
}
p {
    text-align: center;
    font-style: italic;
    color: #fff;
}

.footer{
    margin-top: 820px;
    width: 100%;
    padding: 40px 15%;
    background: #333;
    color: #efefefef;
    display: flex;
    flex-wrap: wrap;
}

.contactfooter{
    text-decoration: underline;
    color: orange;
}

.footer div{
    text-align: center;
}

.col-2{
    flex-grow: 2;
}

.footer div h3{
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.col-1 a{
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
}

form input{
    width: 100%;
    max-width: 400px;
    height: 45px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    outline: none;
    border: none;
}

form button{
    background-color: transparent;
    border: 2px solid orange;
    padding: 10px 30px;
    font-size: 15px;
    cursor: pointer;
    color: orange;
    border-radius: 30px;
}

form button:hover{
    background-color: orange;
    color: white;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .col-1, .col-2, .col-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    form input {
        width: 90%;
    }
}

.social-icons i{
    font-size: 30px;
    margin: 10px;
    cursor: pointer;
    color: orange;
}