/* Base styles */
:root {
    --primary-color: #9c2722;
    --secondary-color: #f8c05a;
    --accent-color: #5a3d2b;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #222;
    --gray-color: #f5f5f5;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.logo-container {
    text-align: center;
    padding: 10px 0;
}

.logo-container h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.tagline {
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9rem;
}

/* Navigation styles */
.mobile-nav {
    position: relative;
}

.menu-icon {
    display: block;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: -50px;
    right: 20px;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: var(--light-color);
    overflow: hidden;
    transition: var(--transition);
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hero section styles */
.hero {
    background-image: url('images/header.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

/* Button styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    margin: 10px 5px;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Welcome section styles */
.welcome {
    padding: 60px 0;
    text-align: center;
}

.welcome p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-buttons {
    margin-top: 20px;
}

/* Features section styles */
.features {
    background-color: var(--gray-color);
    padding: 60px 0;
}

.features .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Menu section styles */
.menu-section {
    padding: 60px 0;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.menu-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.subcategory {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 30px 0 15px;
    text-align: center;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-item {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.menu-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    color: var(--accent-color);
}

.description {
    font-style: italic;
    color: #666;
}

/* Gallery styles */
.gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* Info section styles */
.info-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.info-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-section {
    padding: 60px 0;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.responsive-map {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.responsive-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Reviews section styles */
.reviews-section {
    padding: 60px 0;
}

.review-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

blockquote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.reviewer {
    text-align: right;
    font-weight: bold;
    color: var(--accent-color);
}

.leave-review {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--gray-color);
    border-radius: 10px;
}

.leave-review h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leave-review p {
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 20px;
}

.footer-info {
    margin-bottom: 30px;
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Media queries for responsive design */
@media (min-width: 576px) {
    .logo-container h1 {
        font-size: 2rem;
    }
    
    .menu-items,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .features .container,
    .info-section .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-icon {
        display: none;
    }
    
    .nav-links {
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .features .container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-section .container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}

/* Mobile navigation */
@media (max-width: 767px) {
    .nav-links {
        flex-direction: column;
        height: 0;
        overflow: hidden;
    }
    
    .nav-links.show {
        height: auto;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    .nav-links a.active {
        background-color: var(--primary-color);
        color: var(--light-color);
    }
}
