/* Hero header pro snídaně */
.header-breakfast {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(photos/dimsumspot-andel-04.webp);
    background-color: var(--black-color);
    background-size: cover;
    background-position: center;
}

/* Sekce s výběrem poboček */
.branch-selection {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Grid pro karty poboček */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .branch-grid {
        grid-template-columns: 1fr;
    }
}

/* Karta pobočky */
.branch-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.branch-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.branch-card.coming-soon:hover {
    transform: none;
}

.branch-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.branch-card-content {
    padding: 1.5rem;
    text-align: center;
}

.branch-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.branch-card .hours {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.branch-card .address {
    color: #666;
    font-size: 0.9rem;
}

.coming-soon-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Sekce s menu jednotlivých poboček */
.branch-menu-section {
    padding: 5rem 0;
}

.branch-menu-section:nth-child(even) {
    background-color: #f8f9fa;
}

.branch-menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.branch-menu-header h2 {
    margin-bottom: 1rem;
}

.branch-menu-header .branch-hours {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.branch-menu-header .special-offer {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(197, 158, 45, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.branch-menu-header .branch-address {
    color: #666;
    margin-top: 0.5rem;
}

/* Layout menu sekce - 2 sloupce */
.menu-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .menu-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Menu kategorie */
.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

/* Tabulka menu */
.menu-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.menu-table table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.menu-table tr:last-child {
    border-bottom: none;
}

.menu-table td {
    padding: 1rem 1.5rem;
}

.menu-table .item-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-table .item-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .menu-table td {
        padding: 0.8rem 1rem;
    }
    
    .menu-table .item-name {
        font-size: 1rem;
    }
    
    .menu-table .item-price {
        font-size: 1.1rem;
    }
}

/* Galerie fotek jídel - KARUSEL */
.food-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Přesný poměr 4:5 */
    max-height: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Karusel ovládání - šipky */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

/* Karusel indikátory - tečky */
.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .food-gallery {
        max-height: 600px;
    }
}

@media (max-width: 576px) {
    .food-gallery {
        max-height: 500px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
}

/* Poznámky pod čarou */
.menu-footnotes {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.menu-footnotes p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
}

/* Breadcrumb navigace */
.breadcrumb-nav {
    padding: 1rem 0;
    background-color: #f8f9fa;
}

.breadcrumb-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 800;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}