@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfaf8;
    color: #2d2d2d;
}

header {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.logo span {
    color: #d4a373;
}

nav ul {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=2070') no-repeat center/cover;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
}

.menu-section {
    padding: 60px 0;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-item {
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.price {
    color: #d4a373;
    font-weight: 600;
}