/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
}

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

/* Header Styles */
header {
    background-color: #2c1810;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 2.5rem;
    color: #d4a574;
    font-weight: bold;
    margin-bottom: -5px;
}

.logo .tagline {
    font-size: 1rem;
    color: #e8d5c4;
    font-style: italic;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e8d5c4;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

nav a:hover,
nav a.active {
    color: #d4a574;
    border-bottom: 2px solid #d4a574;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.8), rgba(44, 24, 16, 0.8)), 
                url('static/food1.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #d4a574;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary {
    background-color: #d4a574;
    color: #2c1810;
}

.btn-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
}

.btn-secondary:hover {
    background-color: #d4a574;
    color: #2c1810;
}

/* Gallery Section */
.gallery {
    padding: 4rem 2rem;
    background-color: #f9f7f4;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    color: #d4a574;
    margin: 0;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff8e1;
    border-left: 4px solid #d4a574;
    border-radius: 5px;
}

.notice p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background-color: #2c1810;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d4a574;
}

/* Footer */
footer {
    background-color: #1a0f0a;
    color: #e8d5c4;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-info h3 {
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #3a2518;
    font-size: 0.9rem;
}

.designer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #b8a699;
}

.designer-credit a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: #e8d5c4;
    text-decoration: underline;
}

/* Menu Page Specific */
.menu-intro {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
}

.menu-intro h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.menu-categories {
    padding: 2rem;
    background-color: #f9f7f4;
}

.menu-category {
    background-color: #fff;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-category h3 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #d4a574;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item h4 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.menu-item .price {
    color: #d4a574;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Contact Page */
.contact-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card a {
    color: #d4a574;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Location Page */
.location-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.address-box {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.address-box h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.address-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .services h2 {
        font-size: 2rem;
    }
}
