body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #402E32;
    background-color: #F8F4E3;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #D2B48C;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: #F8F4E3;
    border-bottom: 1px solid #D2B48C;
}

.logo {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.2rem;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1626354672728-4444983088b9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    color: #F8F4E3;
    padding: 0 5%;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 0.3rem;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
}

/* General Section Styling */
.section {
    padding: 6rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
}

.section-text {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Menu Section */
.menu-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.menu-item {
    background-color: #F0EDE2;
    padding: 2rem;
    border: 1px solid #D2B48C;
    flex: 1 1 300px;
    max-width: 350px;
}

.item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.item-description {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #D2B48C;
    font-size: 0.8rem;
    background-color: #F8F4E3;
}
