/* Müşteri Menü Görünümü */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.restaurant-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
                url('../kapakresmi.jpg') center center / cover no-repeat;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.restaurant-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.restaurant-header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    display: block;
    text-align: center;
    letter-spacing: 2px;
}


.restaurant-subtitle {
    font-size: 1.4em;
    opacity: 0.95;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.restaurant-description {
    font-size: 1.1em;
    opacity: 0.95;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.menu-content {
    padding: 40px;
}

.category-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.category-title {
    font-size: 2.2em;
    color: #667eea;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-item {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.menu-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    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.05);
}

.menu-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.menu-icon {
    font-size: 4em;
    opacity: 0.7;
}

.menu-info {
    padding: 20px;
}

.menu-name {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.menu-price {
    font-size: 1.6em;
    color: #667eea;
    font-weight: 700;
    text-align: right;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.empty-menu {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.2em;
}

.restaurant-footer {
    background: #f8f9fa;
    padding: 30px 40px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e9ecef;
}

.restaurant-footer p {
    margin: 5px 0;
    font-size: 1em;
}

.footer-phone-link {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

.footer-phone-link:hover {
    color: #764ba2;
    text-decoration: underline;
    transform: translateX(5px);
}

.footer-address-link {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-address-link:hover {
    color: #764ba2;
    text-decoration: underline;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .restaurant-header {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .restaurant-header h1 {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    .restaurant-subtitle {
        font-size: 1.1em;
    }
    
    .category-nav {
        margin-top: 20px;
        gap: 10px;
    }
    
    .category-link {
        padding: 10px 18px;
        font-size: 0.85em;
    }
    
    .category-section {
        scroll-margin-top: 80px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-content {
        padding: 20px;
    }
}

