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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #faf7f2;
}
.container2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}
a {
    color: inherit;
    text-decoration: none;
}

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

/* Utility classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Header & Navigation */
header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b4513;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li {
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li:hover {
    color: #8b4513;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('../images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8b4513;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #a0522d;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 1rem;
}

.about-text h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.feature {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature h3 {
    margin-top: 15px;
    color: #8b4513;
}

.feature p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Menu Preview */
.menu-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.menu-item .menu-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px;
}

.menu-item .menu-info h3 {
    margin-bottom: 5px;
}

/* Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    background: #fff8f0;
    padding: 40px;
    border-radius: 8px;
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 5px;
}

.testimonial span {
    display: block;
    font-weight: bold;
    color: #8b4513;
}

/* Исправления для раздела событий */
.events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.date-day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-image {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.event:hover .event-image img {
    transform: scale(1.05);
}

.event-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-details h4 {
    color: #8b4513;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.event-details p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: #8b4513;
    width: 16px;
}

.event-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #8b4513;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #8b4513;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.event-link:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .events {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event {
        margin-bottom: 0;
    }
    
    .event-date {
        padding: 15px;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .event-details h4 {
        font-size: 1.2rem;
    }
    
    .event-meta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .events {
        grid-template-columns: 1fr;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .date-day {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .event-image {
        height: 160px;
    }
}

/* Call to Action */
.cta {
    background: #8b4513;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

footer h4 {
    margin-bottom: 15px;
    color: #d2b48c;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

footer a:hover {
    text-decoration: underline;
}

footer .social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

footer .social a {
    background: #8b4513;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
}

/* Specific pages */
/* Альтернативный стиль для заголовка */
.page-header {
    background: linear-gradient(135deg, #2c1a0a 0%, #8b4513 100%);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.2;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(210, 180, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(210, 180, 140, 0.1) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.header-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.header-breadcrumb a {
    color: #d2b48c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb-current {
    color: #d2b48c;
    font-weight: 500;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #d2b48c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d2b48c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Адаптивность для альтернативного варианта */
@media (max-width: 768px) {
    .page-header {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .header-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 350px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .header-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}
/* Дополнительные исправления для структуры событий */
.event-header {
    position: relative;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Убедимся, что контейнер имеет правильные отступы */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .events {
        grid-template-columns: 1fr;
    }
    
    .event-date {
        padding: 10px 12px;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .date-month {
        font-size: 0.9rem;
    }
    
    .event-details {
        padding: 15px;
    }
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    text-transform: uppercase;
}

/* Menu Page */
.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 15px;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info form {
    display: flex;
    flex-direction: column;
}

.contact-info input,
.contact-info textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-info button {
    padding: 12px;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-info button:hover {
    background: #a0522d;
}

.map {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .menu-preview {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        gap: 15px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    nav ul.active {
        transform: translateX(0);
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .cta h2 {
        font-size: 1.8rem;
    }
}

/* Дополнительные стили для главной страницы */

/* Hero Section */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background: #8b4513;
    color: white;
    border: 2px solid #8b4513;
}

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

.btn-secondary:hover {
    background: white;
    color: #8b4513;
}

.btn-light {
    background: white;
    color: #8b4513;
    border: 2px solid white;
}

.btn-outline {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: #8b4513;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 10px auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* About Section */
.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b4513;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 69, 19, 0.8);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

/* Features Section */
.section-title {
    text-align: center;
    color: #8b4513;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8b4513;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #8b4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: #a0522d;
}

/* Menu Preview */
.menu-item-image {
    position: relative;
    overflow: hidden;
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.price {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #8b4513;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu-link:hover {
    gap: 10px;
}

/* Gallery Preview */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-link {
    color: white;
    font-size: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff8f0;
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #8b4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #8b4513;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #8b4513;
    background: transparent;
    border-radius: 50%;
    color: #8b4513;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #8b4513;
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b4513;
}

/* Events */
.event {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateY(-10px);
}

.event-date {
    background: #8b4513;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
}

.date-month {
    font-size: 0.9rem;
}

.event-image {
    width: 100%;
    flex-shrink: 0;
}

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

.event-details {
    padding: 20px;
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.event-link {
    color: #8b4513;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.png') center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Footer */
.footer-column {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d2b48c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #444;
    background: #222;
    color: white;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #8b4513;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    background: #222;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(15px) translateX(-50%);
        opacity: 0;
    }
}

.text-center {
    text-align: center;
}

.nav-active {
    color: #8b4513;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .event {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Menu Page Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero.png') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
    font-weight: 300;
}

/* Menu Navigation */
.menu-navigation {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #8b4513;
    background: transparent;
    color: #8b4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn:hover {
    background: rgba(139, 69, 19, 0.1);
}

.category-btn.active {
    background: #8b4513;
    color: white;
}

/* Menu Categories */
.menu-category {
    display: none;
    margin-bottom: 60px;
}

.menu-category.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.category-header h2 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: #8b4513;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.item-badge.new {
    background: #e74c3c;
}

.item-badge.popular {
    background: #f39c12;
}

.item-content {
    padding: 25px;
}

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

.item-header h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    margin-right: 15px;
}

.item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4513;
    white-space: nowrap;
}

.item-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.item-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.calories, .volume {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.calories::before {
    content: "🔥";
}

.volume::before {
    content: "📏";
}

.customization {
    margin-bottom: 20px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size {
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size.active {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: #a0522d;
    transform: translateY(-2px);
}

/* Special Offers */
.special-offers {
    background: linear-gradient(135deg, #fff8f0, #f5e6d3);
    padding: 80px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-content h3 {
    color: #8b4513;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.offer-content p {
    color: #666;
    margin-bottom: 15px;
}

.offer-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b4513;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-navigation {
        top: 70px;
    }
    
    .menu-categories {
        gap: 5px;
    }
    
    .category-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-price {
        margin-top: 5px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 300px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .item-content {
        padding: 20px;
    }
    
    .special-offers {
        padding: 50px 0;
    }
}