/**
 * BUMR Booking Calendar — frontend styles v1.2.1
 * Kompatibilno: Astra tema + Elementor 3.20+
 */

/* ── Glavni vsebnik ─────────────────────────────────────────────────────── */
.bumr-calendar-widget {
    font-family: inherit;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Zgornji del: Koledar (2/3 višine) ─────────────────────────────────── */
.bumr-cal-top {
    width: 100%;
}

.bumr-fullcalendar {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Cursor pointer na event blokih */
.fc-event,
.fc-daygrid-event {
    cursor: pointer !important;
}

/* Zasedeni termini — prekrižan vzorec */
.bumr-event-full {
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0,0,0,0.08) 0px,
        rgba(0,0,0,0.08) 2px,
        transparent 2px,
        transparent 6px
    ) !important;
}

/* ── Spodnji del: Podrobnostni panel (1/3 višine) ──────────────────────── */
.bumr-cal-detail {
    position: relative;
    margin-top: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-top: 3px solid #1a4f7a;
    border-radius: 0 0 8px 8px;

    /* Gladka CSS tranzicija — brez skočnega pomikanja */
    transition: padding 0.2s ease;
}

.bumr-detail-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    line-height: 1;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
}
.bumr-detail-close:hover { background: #ececec; color: #333; }

/* Glava: barvni pik + naslov */
.bumr-detail-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.bumr-detail-color {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.bumr-detail-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2e3b;
    line-height: 1.3;
}

/* Datumski termin */
.bumr-detail-dates {
    font-size: 0.92rem;
    color: #444;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Dnevni urniki */
.bumr-detail-days {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.6rem;
}

.bumr-day-row {
    white-space: nowrap;
}

/* Inštruktor */
.bumr-detail-instructor {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 0.6rem;
}

.bumr-label-small {
    font-weight: 600;
    color: #333;
}

/* Meta: prosta mesta + cena */
.bumr-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.bumr-detail-seats {
    font-size: 0.9rem;
}

.bumr-seats-open {
    color: #2c6e49;
    font-weight: 600;
}

.bumr-seats-full {
    color: #c0392b;
    font-weight: 600;
}

.bumr-loading-seats {
    color: #888;
    font-size: 0.85rem;
}

.bumr-detail-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e3b;
}
.bumr-detail-price .bumr-regular-price {
    color: #1a2e3b;
}
.bumr-detail-price del.bumr-regular-price {
    color: #999;
    font-weight: 400;
    margin-right: 0.4rem;
}
.bumr-detail-price .bumr-sale-label {
    font-weight: 400;
    color: #555;
    font-size: 0.88rem;
}
.bumr-detail-price .bumr-sale-price {
    color: #c0392b;
    font-size: 1.05rem;
}

/* Akcijski gumbi */
.bumr-detail-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bumr-reserve-btn.button {
    padding: 0.6rem 1.6rem;
    background: #1a4f7a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    letter-spacing: 0.01em;
}
.bumr-reserve-btn.button:hover:not(:disabled) {
    background: #13395a;
}
.bumr-reserve-btn.button:disabled {
    background: #aaa;
    cursor: not-allowed;
    opacity: 0.7;
}

.bumr-full-label {
    font-size: 0.9rem;
    color: #c0392b;
    font-weight: 600;
}

/* Sporočila */
.bumr-detail-msg {
    margin-top: 0.75rem;
    padding: 0.55rem 0.85rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
.bumr-detail-msg.is-error   { background: #fde8e8; color: #c0392b; border: 1px solid #e99; }
.bumr-detail-msg.is-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* ── Odzivnost ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .bumr-fullcalendar {
        width: 100%;
    }
    .bumr-cal-detail {
        padding: 1rem;
    }
    .bumr-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    .bumr-detail-days {
        flex-direction: column;
        gap: 0.2rem;
    }
    .bumr-reserve-btn.button {
        width: 100%;
        text-align: center;
    }
}
