/* Restaurant Specific Styles */

/* Food Placeholder Styles */
.food-placeholder {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.food-placeholder:hover {
    transform: scale(1.05);
}

.food-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.food-label {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

/* Menu page food placeholders */
.breakfast-bg { background: linear-gradient(135deg, #ff9a56, #ff6b35); }
.lunch-bg { background: linear-gradient(135deg, #a8e6cf, #7fcdcd); }
.dinner-bg { background: linear-gradient(135deg, #786fa6, #546de5); }

/* Specific food item backgrounds */
.breakfast-1 { background: linear-gradient(135deg, #ffa502, #ff6348); }
.breakfast-2 { background: linear-gradient(135deg, #ffb142, #ff7675); }
.breakfast-3 { background: linear-gradient(135deg, #fd79a8, #e84393); }

.lunch-1 { background: linear-gradient(135deg, #00b894, #00a085); }
.lunch-2 { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.lunch-3 { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }

.dinner-1 { background: linear-gradient(135deg, #2d3436, #636e72); }
.dinner-2 { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.dinner-3 { background: linear-gradient(135deg, #6c5ce7, #fd79a8); }

/* Restaurant Navigation */
.nav-links .active {
    color: #f39c12 !important;
    font-weight: bold;
}

/* Restaurant Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    min-height: 70vh;
}

.menu-hero {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.menu-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Hours and Menu Section */
.hours-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.hours-menu-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.hours-card, .menu-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-card h3, .menu-card h3 {
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #e67e22;
}

.day-hours strong {
    color: #2c3e50;
}

.day-hours span {
    color: #e67e22;
    font-weight: bold;
}

/* Menu Links */
.menu-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-link:hover {
    background: #f8f9fa;
    border-color: #e67e22;
    transform: translateY(-5px);
}

.menu-link img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.menu-link span {
    font-weight: bold;
    color: #2c3e50;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    background: white;
}

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

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

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

.menu-item figure {
    margin: 0;
}

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

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

.menu-item figcaption {
    padding: 1.5rem;
}

.menu-item h3 {
    color: #e67e22;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.price {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Menu Navigation */
.menu-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

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

.about-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 4px solid #e67e22;
}

.feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Responsive Design for Restaurant */
@media (max-width: 968px) {
    .hours-menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-links {
        grid-template-columns: 1fr;
    }
    
    .menu-navigation {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1, .menu-hero h1 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .hours-card, .menu-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        padding: 100px 0 40px;
    }
    
    .about-section, .hours-section, .menu-section {
        padding: 60px 0;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
