/* Menu Page Specific Styles */

/* Menu Hero Section */
.menu-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/menu-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.menu-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.menu-hero-content p {
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Menu Categories */
.menu-categories {
    padding: 60px 0;
    background: #1a1a1a;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    background: #2a2a2a;
    color: #ccc;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Menu Items */
.menu-items {
    padding: 80px 0;
    background: #000;
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.menu-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 25px;
}

.menu-content h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.menu-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.menu-price {
    color: #ffd700;
    font-size: 28px;
    font-weight: 700;
    display: block;
    text-align: right;
}

/* Category Filter Animation */
.menu-category {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.menu-category.hidden {
    opacity: 0;
    transform: translateY(30px);
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Special Menu Items */
.menu-item.special {
    border: 2px solid #ffd700;
    position: relative;
}

.menu-item.special::before {
    content: 'ÖZEL';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* Menu Item Animation */
.menu-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-hero-content p {
        font-size: 1.1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .menu-content h3 {
        font-size: 20px;
    }
    
    .menu-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        height: 50vh;
    }
    
    .menu-hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-hero-content p {
        font-size: 1rem;
    }
    
    .menu-content {
        padding: 20px;
    }
    
    .menu-content h3 {
        font-size: 18px;
    }
    
    .menu-content p {
        font-size: 14px;
    }
    
    .menu-price {
        font-size: 22px;
    }
}
