@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f7f2 100%);
    color: #2a2a2a;
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: transparent;
    text-align: center;
    padding: 3rem 0 2rem;
}

header .logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav a {
    color: #2a2a2a;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    text-align: center;
    font-size: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    line-height: 1.8;
}

/* Images */
img.full-width-image {
    width: 60%;
    max-width: 600px;
    border-radius: 24px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.story-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-item p {
    font-size: 1rem;
    text-align: center;
}

/* Food Section */
.food-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.food-item {
    text-align: center;
}

.food-item img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.food-item h3 {
    color: #2a2a2a;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.food-item p {
    font-size: 1rem;
    text-align: center;
}

/* Menu Section */
#menu .menu-item {
    margin-bottom: 2.5rem;
    padding-bottom: 0;
    text-align: center;
}

#menu .menu-item:last-child {
    margin-bottom: 0;
}

#menu h3 {
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-content img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-text {
    text-align: center;
}

.contact-text p {
    margin-bottom: 1rem;
    text-align: center;
}

footer {
    text-align: center;
    padding: 3rem 0;
    background: transparent;
    color: #999;
    margin-top: 5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .food-gallery, .contact-content {
        grid-template-columns: 1fr;
    }
    .contact-text {
        margin-top: 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}
