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

:root {
    --brown-dark: #2c1810;
    --brown: #3d2914;
    --brown-light: #5c3d1e;
    --cream: #f5ede0;
    --cream-dark: #e8dcc8;
    --rust: #a65d3f;
    --rust-light: #c97a5c;
    --honey: #d4a54a;
    --white: #fff;
    --text: #2c1810;
    --text-light: #5c3d1e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--honey);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.logo span {
    color: var(--cream);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--honey);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(44,24,16,0.65), rgba(44,24,16,0.55)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    padding-top: 60px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 4px;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    color: var(--honey);
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--rust);
    color: var(--white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid var(--rust);
}

.btn:hover {
    background: transparent;
    color: var(--rust);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166,93,63,0.3);
}

section {
    padding: 90px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-title .decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-title .decor::before,
.section-title .decor::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--honey);
}

.section-title .decor span {
    color: var(--honey);
    font-size: 1.5rem;
}

#about {
    background: var(--white);
}

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

.about-img {
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--honey);
    z-index: -1;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    left: 20px;
    bottom: -20px;
    background: var(--cream-dark);
    z-index: -2;
}

.about-img img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-sign {
    margin-top: 30px;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--brown-light);
    font-family: 'Playfair Display', serif;
}

.about-sign span {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--rust);
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

#menu {
    background: var(--cream-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a54a' fill-opacity='0.08'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.menu-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.menu-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44,24,16,0.08);
    transition: all 0.4s;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,24,16,0.15);
}

.menu-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--rust);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card-content {
    padding: 25px;
}

.menu-card h4 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.menu-card .price {
    display: inline-block;
    color: var(--rust);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 10px;
}

.menu-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

#gallery {
    background: var(--white);
}

.gallery-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 45px;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

#hours {
    background: var(--brown-dark);
    color: var(--cream);
    text-align: center;
}

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

.hours-item h4 {
    color: var(--honey);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hours-item p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream);
}

#contact {
    background: var(--cream);
    padding: 90px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(44,24,16,0.08);
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--brown-dark);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream-dark);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--cream);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(44,24,16,0.1);
}

.contact-list .icon {
    width: 45px;
    height: 45px;
    background: var(--rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-list .content strong {
    display: block;
    color: var(--brown-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-list .content span {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-list .content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list .content a:hover {
    color: var(--rust);
}

.contact-note {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    border-radius: 8px;
    text-align: center;
    color: var(--cream);
}

.contact-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--honey);
}

.contact-note p {
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44,24,16,0.12);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

footer {
    background: var(--brown-dark);
    color: var(--cream-dark);
    padding: 40px 0;
    text-align: center;
}

footer .footer-logo {
    font-size: 2rem;
    color: var(--honey);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

footer .footer-logo span {
    color: var(--cream);
}

footer p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

footer .social-links {
    margin: 20px 0;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--rust);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

footer .social-links a:hover {
    background: var(--honey);
    transform: translateY(-3px);
}

footer .footer-bottom {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--brown-light);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
}