/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --leaf-green: #4a7c59;
    --earth-brown: #5c4033;
    --cream: #fff8e7;
    --orange: #ff9800;
}

body {
    line-height: 1.6;
    color: var(--earth-brown);
    background-color: var(--cream);
    background-image: none;
}

/* Header Styles */
header {
    width: 100%;
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 10;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0 0;
    width: 100%;
    min-height: 30px;
}
nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 10px 0 10px 0;
}
nav a {
    color: var(--earth-brown);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5em 1em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
nav a.order-btn {
    background: var(--orange);
    color: #fff;
    font-weight: bold;
}
nav a:hover, nav a:focus {
    background: var(--leaf-green);
    color: #fff;
}

/* Mascot Section */
.mascot-section {
    text-align: center;
    padding: 2rem 0 1rem 0;
}
.mascot-img {
    max-width: 180px;
    width: 60vw;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Menu Section */
.menu-section {
    background: var(--cream);
    padding: 2rem 0 2rem 0;
    width: 100%;
}
.section-title {
    text-align: center;
    color: var(--leaf-green);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.6rem;
    word-break: break-word;
}
.menu-category {
    margin: 0 auto 2rem auto;
    max-width: 700px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.2rem 1.2rem;
}
.menu-category h3 {
    color: var(--earth-brown);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.menu-note {
    color: var(--leaf-green);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.05rem;
    padding: 0.3em 0;
    border-bottom: 1px solid #ececec;
}
.menu-item:last-child {
    border-bottom: none;
}
.item-name {
    font-weight: 500;
    color: #333;
    flex: 1 1 60%;
    word-break: break-word;
}
.price {
    color: var(--leaf-green);
    font-weight: bold;
    margin-left: 1rem;
    flex-shrink: 0;
}
.item-description {
    display: block;
    color: #888;
    font-size: 0.95em;
    margin-top: 0.1em;
}

/* Footer */
footer {
    background: var(--earth-brown);
    color: var(--cream);
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.footer-section {
    min-width: 160px;
}
.footer-bottom {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-category {
        max-width: 95vw;
        padding: 1rem 0.5rem;
    }
}
@media (max-width: 768px) {
    nav {
        gap: 0.7rem;
        font-size: 1rem;
    }
    .mascot-img {
        max-width: 120px;
        width: 40vw;
        margin-bottom: 1.2rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .menu-category {
        padding: 1rem 0.5rem;
    }
    .footer-content {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .logo {
        padding: 6px 0 0 0;
        min-height: 20px;
    }
    nav {
        flex-direction: column;
        gap: 0.3rem;
        padding: 6px 0 6px 0;
    }
    .mascot-section {
        padding: 1rem 0 0.5rem 0;
    }
    .mascot-img {
        max-width: 70px;
        width: 60vw;
        margin-bottom: 0.7rem;
    }
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
        margin-top: 2vw;
    }
    .menu-category {
        padding: 0.7rem 0.2rem;
        font-size: 0.98rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-section {
        min-width: 100px;
    }
} 