/* ================================================================
   Fires Catalanes – Info Local
   Integrat visualment amb el tema Astra Child de firescatalanes.cat
   ================================================================ */

.fc-info-wrap {
    margin: 32px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Bloc (acordió) ─────────────────────────────────────────── */
.fc-bloc {
    border: 1px solid #e2ddd5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.fc-bloc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: #faf8f5;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.15s;
}

.fc-bloc-header:hover {
    background: #f3efe8;
}

.fc-bloc-header[aria-expanded="true"] {
    background: #f3efe8;
    border-bottom: 1px solid #e2ddd5;
}

.fc-bloc-icona {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fc-bloc-titol {
    flex: 1;
    font-family: inherit;
}

.fc-bloc-chevron {
    font-size: 0.85rem;
    color: #999;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.fc-bloc-header[aria-expanded="true"] .fc-bloc-chevron {
    transform: rotate(180deg);
}

/* ── Cos del bloc ───────────────────────────────────────────── */
.fc-bloc-body {
    padding: 16px 18px;
}

/* ── Items (allotjaments, restaurants) ─────────────────────── */
.fc-bloc-cos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-item {
    padding: 10px 12px;
    background: #faf8f5;
    border-radius: 6px;
    border-left: 3px solid #c8a96e;
}

.fc-item-nom {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
}

.fc-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
}

.fc-tag {
    background: #c8a96e;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.fc-tag-alt {
    background: #888;
}

.fc-adreca {
    color: #666;
}

.fc-marca {
    color: #999;
    font-style: italic;
}

/* ── Stats (municipi, comarca) ─────────────────────────────── */
.fc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.fc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    background: #faf8f5;
    border-radius: 6px;
}

.fc-stat-valor {
    font-size: 1.15rem;
    font-weight: 700;
    color: #c8a96e;
    line-height: 1.2;
}

.fc-stat-etiqueta {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Temps ─────────────────────────────────────────────────── */
.fc-temps-grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.fc-temps-dia {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 10px 8px;
    background: #faf8f5;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.fc-temps-nom {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    white-space: nowrap;
}

.fc-temps-icona {
    font-size: 1.8rem;
    line-height: 1;
    margin: 4px 0;
}

.fc-temps-text {
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 4px;
}

.fc-temps-temp {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.fc-max { color: #c0392b; }
.fc-min { color: #2980b9; }

.fc-temps-pluja {
    font-size: 0.72rem;
    color: #2980b9;
    margin-top: 2px;
}

/* ── Mòbil ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .fc-bloc-header {
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .fc-bloc-body {
        padding: 12px 14px;
    }

    .fc-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-temps-dia {
        min-width: 70px;
    }
}
