/* ════════════════════════════════════════════
   TROKADERO MENU – Front-End Styles
   Brand colors from trokadero.sk
   ════════════════════════════════════════════ */

:root {
    --tr-dark:   #2C1810;
    --tr-mid:    #7B3F2B;
    --tr-accent: #C8843C;
    --tr-light:  #F5EDD8;
    --tr-sand:   #E8D5B0;
    --tr-text:   #2C1810;
    --tr-muted:  #8C7B6A;
    --white:     #FFFFFF;
    --radius:    6px;
}

.trok-menu-wrap {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--tr-text);
    background: var(--tr-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44,24,16,.15);
}

/* ── HEADER ── */
.trok-header {
    background: var(--tr-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    gap: 20px;
}

.trok-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trok-logo-icon { font-size: 36px; }
.trok-logo-text strong {
    display: block;
    font-size: 22px;
    color: var(--tr-accent);
    font-style: italic;
    letter-spacing: 1px;
}
.trok-logo-text span {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--tr-sand);
    text-transform: uppercase;
}

.trok-header-title { text-align: center; flex: 1; }
.trok-header-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0 0 8px;
}
.trok-date-badge {
    display: inline-block;
    background: var(--tr-accent);
    color: var(--white);
    border-radius: 30px;
    padding: 6px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.trok-header-contact {
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: var(--tr-sand);
}

/* ── DAY ROWS ── */
.trok-day-row {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--tr-sand);
    background: var(--white);
    transition: background .2s;
}
.trok-day-row:nth-child(even) { background: #FEFCF7; }
.trok-day-row:hover { background: #FDF8EE; }

.trok-day-label {
    background: var(--tr-dark);
    color: var(--white);
    width: 80px;
    min-width: 80px;
    text-align: center;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.trok-day-name {
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tr-accent);
    font-weight: 700;
}
.trok-day-num {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}
.trok-day-date {
    font-size: 10px;
    color: var(--tr-sand);
    font-family: Arial, sans-serif;
}

.trok-day-content {
    flex: 1;
    display: flex;
    padding: 16px;
    gap: 20px;
}

.trok-soups-col {
    width: 35%;
    min-width: 180px;
    border-right: 2px dashed var(--tr-sand);
    padding-right: 16px;
}
.trok-mains-col { flex: 1; }

.trok-section-title {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--tr-mid);
    border-bottom: 2px solid var(--tr-sand);
    padding-bottom: 6px;
    margin-bottom: 10px;
}
.trok-icon { margin-right: 4px; }

.trok-soup-item {
    font-size: 13px;
    padding: 4px 0 4px 10px;
    border-left: 3px solid var(--tr-accent);
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--tr-text);
}

.trok-main-item {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.trok-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--tr-accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-top: 1px;
}

.trok-day-price {
    background: var(--tr-sand);
    width: 80px;
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--tr-sand);
}
.trok-price-label {
    font-family: Arial, sans-serif;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tr-muted);
    margin-bottom: 4px;
}
.trok-price-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--tr-mid);
}

/* ── EXTRAS ── */
.trok-extras {
    background: var(--tr-sand);
    padding: 20px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    border-top: 3px solid var(--tr-accent);
}
.trok-extras-title {
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tr-mid);
    margin-bottom: 8px;
}
.trok-extras-list { flex: 1; }
.trok-extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 6px;
}
.trok-extra-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px; min-width: 22px;
    background: var(--tr-accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}
.trok-extra-dots { flex: 1; border-bottom: 1px dotted var(--tr-muted); height: 1px; margin: 0 4px; }
.trok-extra-price { font-weight: 700; color: var(--tr-mid); white-space: nowrap; }

.trok-serve-time {
    background: var(--tr-dark);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    min-width: 180px;
}
.trok-serve-time span { font-size: 20px; display: block; }

/* ── ALLERGENS ── */
.trok-allergens {
    background: var(--white);
    padding: 16px 32px;
    border-top: 1px solid var(--tr-sand);
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: var(--tr-muted);
    line-height: 1.6;
}
.trok-allergens strong {
    display: block;
    color: var(--tr-mid);
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── ACTIONS ── */
.trok-actions {
    background: var(--tr-dark);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trok-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
}
.trok-btn-pdf {
    background: var(--tr-accent);
    color: var(--white);
}
.trok-btn-pdf:hover {
    background: #a96d2e;
    color: var(--white);
    text-decoration: none;
}
.trok-tagline {
    font-style: italic;
    color: var(--tr-accent);
    font-size: 16px;
    margin: 0;
}
.trok-not-published {
    background: var(--tr-sand);
    border: 2px solid var(--tr-accent);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    color: var(--tr-mid);
    font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .trok-header { flex-direction: column; text-align: center; padding: 16px; }
    .trok-header-contact { text-align: center; }
    .trok-day-row { flex-wrap: wrap; }
    .trok-day-label { width: 100%; flex-direction: row; padding: 8px 16px; gap: 12px; }
    .trok-day-num { font-size: 24px; }
    .trok-day-content { flex-direction: column; width: 100%; }
    .trok-soups-col { width: 100%; border-right: none; border-bottom: 2px dashed var(--tr-sand); padding-right: 0; padding-bottom: 12px; }
    .trok-day-price { width: 100%; padding: 10px; flex-direction: row; gap: 8px; }
    .trok-extras { flex-direction: column; }
}
