/* =====================================================
   RESTAURANT SECTION - ADDITIONAL STYLES
   ===================================================== */

/* Restaurant Hero */
.restaurant-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.restaurant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"></path></svg>') no-repeat bottom;
    background-size: 100% 100px;
    opacity: 0.5;
}

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

.restaurant-hero h1 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.restaurant-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.hero-actions .btn {
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.hero-actions .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-actions .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-actions .btn-outline-light:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* About Restaurant */
.restaurant-about {
    background: white;
}

.restaurant-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.restaurant-about .lead {
    color: #667eea;
    font-weight: 600;
}

.restaurant-about ul li {
    font-size: 1.1rem;
    color: #555;
}

/* Restaurant Offers Section */
.restaurant-offers-section {
    background: #f8f9fa;
}

.restaurant-offers-section .display-5 {
    font-weight: 700;
    color: #2c3e50;
}

/* Restaurant Menu Section */
.restaurant-menu-section {
    background: white;
}

.menu-category {
    padding: 40px 0;
}

.category-header .category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.category-header .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.category-description {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Restaurant Gallery */
.restaurant-gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    transition: transform 0.3s ease;
}

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

/* Restaurant Contact Section */
.restaurant-contact-section {
    background: white;
}

.restaurant-contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}

.contact-info .info-item i {
    font-size: 1.3rem;
    width: 30px;
}

.reservation-form .form-control,
.reservation-form .form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.reservation-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Smooth Scroll */
html {
    /* scroll-behavior removed to prevent auto-scroll on navigation */
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-hero {
        padding: 80px 0 60px;
    }
    
    .restaurant-hero h1 {
        font-size: 2.5rem;
    }
    
    .restaurant-hero .lead {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .restaurant-about h2 {
        font-size: 2rem;
    }
    
    .category-header .category-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .restaurant-hero h1 {
        font-size: 2rem;
    }
    
    .flash-sale-content {
        flex-direction: column;
    }
    
    .flash-timer {
        justify-content: center;
    }
}
