/* Balık Menü Sayfası Stilleri */
.balik-menu-page {
    padding: 0;
    background: #0c0f12;
    min-height: 100vh;
    overflow-x: hidden;
}

.balik-menu-header {
    text-align: center;
    background: linear-gradient(rgba(4, 9, 12, 0.7), rgba(4, 9, 12, 0.9), rgba(4, 9, 12, 1)), url('../images/main-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 60px 20px;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    gap: 20px;
}

.balik-menu-header h1 {
    font-family: 'Gosha Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.balik-menu-header p {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
    max-width: 600px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.menu-subtitle {
    text-align: center;
}

.menu-subtitle h2 {
    font-family: 'Gosha Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-categories-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px 0 20px;
}

.categories-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.category-card {
    flex: 1;
    background: #ebecee;
    
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.category-image {
    height: 150px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 25px;
}

.category-title {
    font-family: 'Gosha Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #0b1a18;
    padding-bottom: 10px;
    margin-top: -20px;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    padding: 10px;
    background: white;
    border-left: 4px solid  #02a2ea;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-item:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.menu-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.menu-item-image:hover {
    transform: scale(1.05);
    border-color: #02a2ea;
    box-shadow: 0 4px 12px rgba(2, 162, 234, 0.3);
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item h3 {
    font-family: 'Gosha Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.menu-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.menu-item .price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #02a2ea;
    background: rgba(2, 162, 234, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Resim Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
}

.modal-close:hover {
    color: #02a2ea;
    transform: scale(1.1);
}

.modal-content-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#modalCaption {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.no-items {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 60px 20px;
}

.no-categories {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.no-categories h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-categories p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .categories-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .balik-menu-page {
        padding: 80px 0 60px 0;
    }
    
    .balik-menu-header {
        padding: 100px 20px 50px 20px;
        height: 60vh;
    }
    
    .balik-menu-header h1 {
        font-size: 2.2rem;
    }
    
    .menu-subtitle h2 {
        font-size: 2rem;
    }
    
    .balik-menu-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .menu-categories-grid {
        padding: 0 15px;
    }
    
    .categories-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .menu-item {
        padding: 8px;
        gap: 8px;
    }
    
    .menu-item-image {
        width: 50px;
        height: 50px;
    }
    
    .menu-item h3 {
        font-size: 1rem;
    }
    
    .menu-item p {
        font-size: 0.75rem;
    }
    
    .menu-item .price {
        font-size: 0.85rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .balik-menu-header {
        padding: 80px 20px 40px 20px;
        height: 60vh;
    }
    
    .balik-menu-header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .menu-subtitle h2 {
        font-size: 1.5rem;
    }
    
    .menu-categories-grid {
        padding: 0 10px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-image {
        height: 120px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .menu-item {
        padding: 5px;
        gap: 5px;
    }
    
    .menu-item-image {
        width: 35px;
        height: 35px;
        border-radius: 5px;
    }
    
    .menu-item h3 {
        font-size: 0.8rem;
    }
    
    .menu-item p {
        font-size: 0.65rem;
    }
    
    .menu-item .price {
        font-size: 0.75rem;
        padding: 1px 4px;
    }
}

/* Banner Galeri Bölümü */
.banner-gallery-section {
    background: #0c0f12;
    padding: 100px 0 0 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.banner-gallery-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Gosha Sans', sans-serif;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 1px;
    margin-bottom: 0;
    overflow: visible;
    transition: transform 0.5s ease;
    cursor: pointer;
    
}

.banner-card {
    position: relative;
    height: 120px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1px;
    background: #333;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 14, 16, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.banner-card:hover::before {
    background: rgba(9, 14, 16, 0.1);
}


/* Toplu hareket efekti - Tüm resimler tek blok gibi */
.banner-grid:hover {
    animation: slideLeftRight 1.5s ease-in-out forwards;
}

@keyframes slideLeftRight {
    0% {
        transform: translateX(0);
    }
    33% {
        transform: translateX(-30px);
    }
    66% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease-out;
    border-radius: 0;
    position: relative;
    z-index: 0;
    will-change: transform;
    filter: brightness(0.7);
}

/* Responsive Banner Grid */
@media (max-width: 768px) {
    .banner-gallery-section {
        padding: 30px 0 0 0;
    }
    
    .banner-gallery-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .banner-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 100px);
        gap: 1px;
    }

    .banner-card {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .banner-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 80px);
        gap: 1px;
    }

    .banner-card {
        height: 80px;
        border-radius: 0;
    }
}

/* Sipariş Sağlayıcılar - Menü Resimlerinde */
.category-image {
    position: relative;
}

.category-saglayicilar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 19%);
    backdrop-filter: blur(4px);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.saglayici-mini {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.3);
}

.saglayici-clickable:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #333;
}

.saglayici-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(50%);
}

.saglayici-disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.saglayici-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.saglayici-icon-fa {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-saglayicilar {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        gap: 4px;
        padding: 6px 0;
    }
    
    .saglayici-mini {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        border: 6px solid rgba(255, 255, 255, 0.3);
    }
    
    .saglayici-logo {
        width: 20px !important;
        height: 20px !important;
    }
    
    .saglayici-icon-fa {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .category-saglayicilar {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        gap: 3px;
        padding: 5px 0;
    }
    
    .saglayici-mini {
        width: 26px;
        height: 26px;
        border-radius: 5px;
        border: 5px solid rgba(255, 255, 255, 0.3);
    }
    
    .saglayici-logo {
        width: 18px !important;
        height: 18px !important;
    }
    
    .saglayici-icon-fa {
        font-size: 13px !important;
    }
}
