@charset "utf-8";
@import './reset.css';
@import './joint.css';

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7a00;
    padding: 15px 30px;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-name {
    font-size: 30px;
    font-weight: bold;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 25px;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-item a:hover {
    color: #000;
}

.menu-header {
    background-color: #fce896;
    padding: 6rem 0;
    text-align: left;

}

.menu-header h1 {
    color: #fd4c0b;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.3;
    margin-left: 500px;
    margin-top: -30px;
}

.menu-header h3 {
    color: #5b3118;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    margin-left: 500px;
    margin-top: -20px;
}

.menu-container {
    background-color: rgb(249,242,234);
    display: flex;
    justify-content: space-around;
    padding: 4rem 40rem;
    gap: 1rem;
}

.menu-section {
    flex: 1;
    max-width: 400px;
}

.menu-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.divider {
    height: 2px;
    background-color: #e62e00;
    margin: 2.5rem 0;
}

.menu-item {
    margin-bottom: 2rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
}

.item-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000;
}

.price {
    font-size: 1.7rem;
    font-weight: 500;
    color: #000000;
}

.item-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #222222;
}

footer {
    background-color: #ff7a00;
    color: white;
    text-align: center;
    padding: 15px;
}

.footer-bottom p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .site-name {
        font-size: 20px;
    }

    .menu-header h1 {
        font-size: 3rem;
        margin-left: 100px;
    }

    .menu-header h3 {
    color: #5b3118;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    margin-left: 100px;
    margin-top: 40px;
    }


    .menu-container {
        flex-direction: column;
        align-items: center;
        padding: 4rem 10rem;
    }

    .nav-item {
        margin-left: 10px;
    }
}

@media (min-width: 1200px) {
    .menu-container {
        padding: 4rem 30rem;
        flex-direction: row;
    }

    .menu-header h1 {
        font-size: 8rem;
        margin-left: 200px;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .menu-container {
        padding: 3rem 20rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-section {
        flex: 1 1 45%;
    }

    .menu-header {
        text-align: center;
    }

    .menu-header h1 {
        font-size: 5rem;
        margin: 0;
    }

    .menu-header h3 {
    color: #5b3118;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    margin-left: 100px;
    margin-top: 40px;
    }
}