* {
    font-family: 'Inter', sans-serif;
    background-color: #fffbf6;
}

h2 {
    color: #cf5e5b;
    margin: 0px;
}
 
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20%;  
}

.logo {
    font-size: 30px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

a{
    font-size: 20px;
    color: #cf5e5b;
    text-decoration: none;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about {
    text-align: center;
}

.about-text {
    max-width: 700px;
    line-height: 1.3;
    font-size: 18px;
}

.menu-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.menu-buttons button {
    padding: 8px;
    font-size: 14px;
}

.menu-buttons button {
    padding: 10px 20px;
    border: none;
    background-color: #cf5e5b;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.menu-buttons button:hover {
    background-color: #fbdcd9;
}

.menu-category img {
    padding: 10px;
    width: 100%;
    height: auto;
    display: block;
}


.contact-text {
    text-align: center;
}


#dealDisplay {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

#dealDisplay img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    #dealDisplay {
        flex-direction: column;
        align-items: center;
    }

    #dealDisplay img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .nav-buttons {
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}