/* --- Styly pro Menu Generátor (Denní, Stálé i Nápoje) --- */

@font-face {
    font-family: 'Akaya Kanadaka';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('lib/akaya-kanadaka-v18-latin-ext-regular.woff2') format('woff2');
}

.menu-animation-wrapper {
    overflow-x: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 2. Hlavní kontejner menu (Aplikováno na všechny 3 typy) */
#menu-container,
#stale-menu-container,
#napoje-container {
    font-family: 'Akaya Kanadaka', cursive !important;
    background-color: #0c0a26;
    color: #ffffff;
    padding: 2.5rem 2rem;
}

/* 3. Nadpis sekce/týdne */
#menu-container .menu-tyden-info,
#stale-menu-container .menu-tyden-info,
#napoje-container .menu-tyden-info {
    text-align: center;
    color: #f0f0f0;
    font-family: 'Akaya Kanadaka', cursive !important;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    line-height: 1.4;
}

#menu-container .menu-tyden-title,
#stale-menu-container .menu-tyden-title,
#napoje-container .menu-tyden-title {
    display: inline;
}

#menu-container .menu-tyden-date,
#stale-menu-container .menu-tyden-date,
#napoje-container .menu-tyden-date {
    display: inline;
}

/* 4. Blok pro den/sekci */
#menu-container .menu-den-blok,
#stale-menu-container .menu-den-blok,
#napoje-container .menu-den-blok {
    margin-bottom: 2.5rem;
    border-top: 2px solid #B8860B;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* První blok bez mezery */
#menu-container .menu-den-blok:first-child,
#stale-menu-container .menu-den-blok:first-child,
#napoje-container .menu-den-blok:first-child {
    margin-top: 0;
}

/* 5. Nadpis dne/sekce */
#menu-container .menu-den-nadpis,
#stale-menu-container .menu-den-nadpis,
#napoje-container .menu-den-nadpis {
    font-family: 'Akaya Kanadaka', cursive !important;
    color: #00bfff !important;
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0.5rem;
}

#menu-container .menu-datum,
#stale-menu-container .menu-datum,
#napoje-container .menu-datum {
    font-family: 'Akaya Kanadaka', cursive !important;
    font-size: 1.5rem;
    color: #ccc;
    margin-left: 0.5rem;
}

/* 6. Seznam */
#menu-container .menu-list,
#stale-menu-container .menu-list,
#napoje-container .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 7. Položka jídla */
#menu-container .menu-item,
#stale-menu-container .menu-item,
#napoje-container .menu-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-size: 1.8rem;
}

/* 8. Název jídla */
#menu-container .menu-item-name,
#stale-menu-container .menu-item-name,
#napoje-container .menu-item-name {
    max-width: 75%;
    margin-right: 0.5rem;
    flex-basis: auto;
    margin-bottom: 0;
    color: #f0f0f0;
}

/* 9. Cena jídla */
#menu-container .menu-item-price,
#stale-menu-container .menu-item-price,
#napoje-container .menu-item-price {
    flex-shrink: 0;
    margin-left: 0.5rem;
    background-color: #c0efff;
    color: #0c0a26;
    padding: 0.1rem 0.2rem;
    border-radius: 40% 0%;
    font-weight: bold;
    font-size: 1.5rem;
}

/* 10. Tečky (skryté) */
#menu-container .menu-item-dots,
#stale-menu-container .menu-item-dots,
#napoje-container .menu-item-dots {
    display: none;
}

/* 11. Výjimka */
#menu-container .menu-vyjimka,
#stale-menu-container .menu-vyjimka,
#napoje-container .menu-vyjimka {
    color: #ffc107;
    font-size: 1.4rem;
    font-style: italic;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

/* --- RESPONZIVITA PRO MOBILY --- */
@media (max-width: 768px) {

    /* Nadpis */
    #menu-container .menu-tyden-title,
    #stale-menu-container .menu-tyden-title,
    #napoje-container .menu-tyden-title {
        display: block;
        font-size: 1.5rem;
    }

    #menu-container .menu-tyden-date,
    #stale-menu-container .menu-tyden-date,
    #napoje-container .menu-tyden-date {
        display: block;
        font-size: 1.3rem;
        color: #ccc;
    }

    /* Padding kontejnerů */
    #menu-container,
    #stale-menu-container,
    #napoje-container {
        padding: 1.5rem 0.5rem;
    }

    /* Fonty */
    #menu-container .menu-den-nadpis,
    #stale-menu-container .menu-den-nadpis,
    #napoje-container .menu-den-nadpis {
        font-size: 2.2rem;
    }

    #menu-container .menu-item,
    #stale-menu-container .menu-item,
    #napoje-container .menu-item {
        font-size: 1.5rem;
    }

    #menu-container .menu-item-price,
    #stale-menu-container .menu-item-price,
    #napoje-container .menu-item-price {
        font-size: 1.3rem;
    }
}

/* --- ANIMACE (STEJNÉ PRO VŠECHNY) --- */
.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in.from-left {
    transform: translateX(-150px);
}

.animate-in.from-right {
    transform: translateX(150px);
}

@media (min-width: 769px) {
    .animate-in.from-left {
        transform: translateX(-450px);
    }

    .animate-in.from-right {
        transform: translateX(450px);
    }
}

.animate-in.from-left.is-visible,
.animate-in.from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}