:root {
    --brown-dark: #3e2723;
    --brown: #5d4037;
    --beige: #d7ccc8;
    --cream: #efebe9;
    --white: #ffffff;
    --green: #2e7d32;
    --red: #c62828;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--brown-dark);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

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

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

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

.logo {
    font-size: 2rem;
    color: var(--white);
    font-style: italic;
}

nav a {
    text-decoration: none;
    color: var(--white);
    margin-left: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: 0.3s;
}

nav a:hover {
    color: var(--beige);
}

/* Hero */
#hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

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

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-wood {
    background: var(--brown);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid var(--brown);
}

.btn-wood:hover {
    background: transparent;
    border-color: var(--white);
}

/* Intro */
.section {
    padding: 100px 0;
}

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

.intro-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--beige);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brown);
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--brown);
}

.feat i {
    font-size: 1.5rem;
}

/* Menu */
.bg-texture {
    background-color: #fff8e1;
    background-image: radial-gradient(#d7ccc8 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--brown-dark);
}

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

.menu-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h3 {
    font-size: 1.2rem;
    color: var(--brown);
}

.price {
    font-weight: 700;
    color: var(--brown-dark);
    font-family: 'Playfair Display', serif;
}

/* Location */
.location-card {
    background: var(--brown-dark);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.3);
}

.info-side {
    padding: 50px;
}

.info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--beige);
}

.info-side p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hours {
    margin: 30px 0;
    border-left: 3px solid var(--beige);
    padding-left: 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.status-indicator.open .dot { background: #4caf50; box-shadow: 0 0 10px #4caf50; }
.status-indicator.closed .dot { background: #f44336; }

.btn-wood-outline {
    display: inline-block;
    border: 2px solid var(--beige);
    color: var(--beige);
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-wood-outline:hover {
    background: var(--beige);
    color: var(--brown-dark);
}

.map-side {
    background: #5d4037;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 5rem;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    filter: grayscale(50%);
}

footer {
    text-align: center;
    padding: 30px;
    background: var(--brown-dark);
    color: var(--beige);
}

footer i { color: var(--red); }

/* Animation */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

[data-scroll="fade-up"] { transform: translateY(50px); }
[data-scroll="fade-left"] { transform: translateX(30px); }
[data-scroll="fade-right"] { transform: translateX(-30px); }

[data-scroll].scrolled {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 768px) {
    .grid-intro, .location-card {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    nav { display: none; }
}
