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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(rgba(250, 248, 245, 0.95), rgba(250, 248, 245, 0.95)), 
                url('../images/sergey-kotenev-Qx_S2YE5I1o-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    color: #4b3a33;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Header */
.header {
    background: rgba(139, 69, 19, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.logo-container {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #f4d03f;
    margin-bottom: 0;
    font-style: italic;
}

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

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
}

.navigation a:hover {
    color: #f4d03f;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), 
                url('../images/sergey-kotenev-Qx_S2YE5I1o-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.cta-button {
    background: linear-gradient(45deg, #d4a574, #c19a6b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.mission h2 {
    color: #8b4513;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mission p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Menu Section */
.menu {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu h2 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: linear-gradient(135deg, #faf8f5, #f9f6f2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

.menu-category h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4a574;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e2db;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a0f0a;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.price {
    color: #8b4513;
    font-weight: 600;
}

.menu-item p {
    color: #2c1810;
    font-size: 0.9rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Featured Section */
.featured {
    padding: 4rem 0;
    background: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.featured h2 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.featured-subtitle {
    text-align: center;
    color: #4a3429;
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

.featured-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
}

.featured-image {
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.featured-content p {
    color: #5d4e3a;
    font-size: 0.9rem;
}

/* Locations Section */
.locations {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.locations h2 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.locations-subtitle {
    text-align: center;
    color: #4a3429;
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

.location-card {
    background: linear-gradient(135deg, #faf8f5, #f9f6f2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.location-info p {
    margin-bottom: 0.5rem;
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.location-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d4a574;
}

.location-hours p {
    color: #2c1810;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810, #3d2817);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f4d03f;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    color: #f4d03f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a3429;
}

.footer-bottom p {
    color: #8b7355;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation ul {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .menu-category {
        padding: 1rem;
    }
    
    .location-card {
        padding: 1rem;
    }
}