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

body {
    font-family: 'Lato', sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #8b4513;
    text-decoration: none;
    font-weight: 700;
}

.menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.menu a:hover {
    color: #8b4513;
}

.reserve-btn {
    background: #8b4513;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.reserve-btn:hover {
    background: #6d3510;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #2d2d2d;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d4a373" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: #8b4513;
    color: #fff;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #6d3510;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border: 2px solid #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: #fff;
    color: #8b4513;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/*.image-placeholder {
    width: 80%;
    height: 100px;
    background: #f5f1ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}*/
.label {
    color: #8b4513;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #2d2d2d;
}

.welcome-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5d5d5d;
    margin-bottom: 20px;
}

.text-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

/* Specialties */
.specialties {
    padding: 100px 0;
    background: #f5f1ed;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2d2d2d;
    font-weight: 700;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.dish-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: translateY(-8px);
}

.dish-image {
    font-size: 80px;
    margin-bottom: 20px;
}

.dish-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.dish-card p {
    color: #5d5d5d;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.price {
    font-size: 22px;
    color: #8b4513;
    font-weight: 700;
}

.center-btn {
    text-align: center;
}

/* Atmosphere */
.atmosphere {
    padding: 100px 0;
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atmosphere-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.atmosphere-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5d5d5d;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin-top: 28px;
}

.features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.features li:last-child {
    border-bottom: none;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: #f5f1ed;
    text-align: center;
}

.reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    text-align: left;
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5d5d5d;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer strong {
    display: block;
    color: #2d2d2d;
    font-size: 16px;
    margin-bottom: 4px;
}

.reviewer span {
    font-size: 14px;
    color: #8b4513;
}

/* Hours & Location */
.hours-location {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-box {
    background: #f5f1ed;
    padding: 40px;
    border-radius: 8px;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.info-box p {
    color: #5d5d5d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.info-box .btn-primary {
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #b5b5b5;
    line-height: 1.8;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b5b5b5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #8b4513;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright{
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 16px;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 24px;
    text-align: center;
    color: #888;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 968px) {
    .welcome-grid,
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .reserve-btn {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
