/* Simple and clean restaurant theme */
:root {
    --bg: #fffaf5;
    --text: #2f241d;
    --accent: #b76e3c;
    --accent-dark: #7f4826;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fffaf5 0%, #f8efe8 100%);
    line-height: 1.6;
}

/* Hero section styling */
.hero,
.page-hero {
    min-height: 100vh;
    padding: 24px 8% 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: white;
}

.page-hero {
    min-height: 70vh;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}
.nav-links a.active {
    color: rgb(102, 191, 191);
    text-decoration: underline;
    margin-left: 20px;
}
.hero-content {
    max-width: 640px;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #f5d8bf;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 16px;
}

.hero-text {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* Main content sections */
.section {
    padding: 70px 8%;
}

.page-hero-content {
    max-width: 700px;
    padding-top: 80px;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 580px;
    margin: 24px auto 0;
}

.contact-section h2 {
    max-width: 580px;
    margin: 0 auto 16px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e3d8cc;
    border-radius: 10px;
    font: inherit;
}

.about,
.contact {
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: var(--card);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card h3 {
    margin-bottom: 8px;
    color: var(--accent-dark);
    
    
    font-family: 'Playfair Display', serif; 
}

.footer {
    text-align: center;
    padding: 24px 8% 40px;
    color: #7a6558;
}

/* Responsive layout */
@media (max-width: 768px) {
    .cards,
    .page-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links a {
        margin: 0 10px;
    }
}
