/* Bar Menü Ana Sayfa CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1810 50%, #1a1a1a 75%, #0a0a0a 100%);
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.menu-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
}

.menu-header {
    text-align: center;
    margin-bottom: 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2d1810 0%, #4a2c1a 25%, #8b4513 50%, #4a2c1a 75%, #2d1810 100%);
    color: #f5f5f5;
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
}

.menu-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: none;
    color: white;
    font-weight: 700;
    letter-spacing: 0;
}

.menu-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    letter-spacing: 0;
}

/* Logo Stilleri */
.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Responsive logo boyutları */
@media (max-width: 768px) {
    .header-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 120px;
    }
}

/* Dil Seçici */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 26, 26, 0.8);
    color: #d4af37;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.lang-btn.active {
    background: linear-gradient(135deg, #8b4513 0%, #d4af37 100%);
    color: #1a1a1a;
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Kategori Navigasyonu */
.category-nav {
    margin-bottom: 0;
    background: rgba(45, 24, 16, 0.95);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    z-index: 100;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.category-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.category-nav-list li {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 10px 16px;
    background: transparent;
    color: #d4af37;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #f5f5f5;
    transform: none;
    box-shadow: none;
}

.nav-link.active {
    background: linear-gradient(135deg, #d4af37 0%, #8b4513 100%);
    color: #1a1a1a;
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .category-nav {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .category-nav-list {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        width: auto;
        text-align: center;
        padding: 8px 15px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

.category-section {
    margin-bottom: 0;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.category-title {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.category-title i {
    color: #d4af37;
    font-size: 1.5rem;
}

.category-description {
    color: #b8b8b8;
    font-size: 1rem;
    margin-bottom: 30px;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, #2d1810 0%, #4a2c1a 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d1810;
    color: #d4af37;
    font-size: 2.5rem;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.product-description {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.product-price {
    padding: 0 20px 20px;
    text-align: right;
}

.price-amount {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.menu-footer {
    text-align: center;
    margin-top: 0;
    padding: 40px 20px;
    background: rgba(45, 24, 16, 0.9);
    border-radius: 0;
    color: #b8b8b8;
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-footer p {
    margin: 0;
    font-size: 1rem;
}

.menu-footer i {
    color: #d4af37;
    margin-right: 8px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .menu-container {
        margin: 10px;
        padding: 15px;
    }
    
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .menu-header .subtitle {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 20px;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    .category-nav {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .category-section {
        padding: 20px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
}
