/* ==========================================================
   KALENDARI BUJQESOR
   ========================================================== */

.farm-calendar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}


/* ==========================================================
   KARTA
   ========================================================== */

.farm-month-card {
    position: relative;
    overflow: hidden;

    min-width: 0;
    min-height: 350px;

    padding: 1.75rem;

    border: 1px solid var(--bs-border-color);
    border-radius: 1.4rem;

    color: var(--bs-body-color);
    background: var(--bs-body-bg);

    box-shadow:
        0 0.35rem 1.25rem
        rgba(var(--bs-emphasis-color-rgb), 0.045);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.farm-month-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(var(--bs-emphasis-color-rgb), 0.22);

    box-shadow:
        0 1rem 2.5rem
        rgba(var(--bs-emphasis-color-rgb), 0.085);
}


/* ==========================================================
   HEADER I KARTES
   ========================================================== */

.farm-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 1.35rem;
}


.farm-month-meta {
    display: flex;
    align-items: center;

    gap: 0.65rem;
}


/* ==========================================================
   NUMRI I MUAJIT
   ========================================================== */

.farm-month-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 2.8rem;
    height: 2.8rem;

    padding: 0 0.6rem;

    border: 1px solid var(--bs-border-color);
    border-radius: 0.85rem;

    color: var(--bs-emphasis-color);
    background: var(--bs-tertiary-bg);

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.055em;
}


/* ==========================================================
   STINA
   ========================================================== */

.farm-season-label {
    color: var(--bs-secondary-color);

    font-size: 0.9rem;
    font-weight: 700;
}


/* ==========================================================
   IKONA E STINES
   ========================================================== */

.farm-season-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 3.2rem;
    height: 3.2rem;

    border-radius: 1rem;

    font-size: 1.1rem;
}


/* Pranvere */

.farm-month-card.spring .farm-season-icon {
    color: #198754;
    background: rgba(25, 135, 84, 0.12);
}


/* Vere */

.farm-month-card.summer .farm-season-icon {
    color: #b47a00;
    background: rgba(255, 193, 7, 0.15);
}


/* Vjeshte */

.farm-month-card.autumn .farm-season-icon {
    color: #c45d13;
    background: rgba(253, 126, 20, 0.14);
}


/* Dimer */

.farm-month-card.winter .farm-season-icon {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.12);
}


/* ==========================================================
   EMRI I MUAJIT
   ========================================================== */

.farm-month-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
}


.farm-month-title {
    margin: 0;

    color: var(--bs-emphasis-color);

    font-size: clamp(1.9rem, 2.4vw, 2.35rem);
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -0.04em;
}


/* ==========================================================
   IKONA E MUAJIT AKTUAL
   ========================================================== */

.farm-current-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 2.45rem;
    height: 2.45rem;

    border-radius: 50%;

    color: var(--bs-success-text-emphasis);
    background: var(--bs-success-bg-subtle);

    border:
        1px solid var(--bs-success-border-subtle);

    font-size: 0.9rem;

    box-shadow:
        0 0.25rem 0.7rem
        rgba(var(--bs-success-rgb), 0.10);
}


/* ==========================================================
   NDARESI
   ========================================================== */

.farm-card-divider {
    width: 100%;
    height: 1px;

    margin: 1.35rem 0;

    background: var(--bs-border-color);
}


/* ==========================================================
   LISTA
   ========================================================== */

.farm-task-list {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    padding: 0;
    margin: 0;

    list-style: none;
}


.farm-task-list li {
    display: flex;
    align-items: flex-start;

    gap: 0.85rem;
}


/* ==========================================================
   IKONA E LISTES
   ========================================================== */

.farm-task-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 2rem;
    height: 2rem;

    margin-top: 0.05rem;

    border-radius: 0.65rem;

    color: var(--bs-success);
    background: rgba(var(--bs-success-rgb), 0.09);

    font-size: 0.75rem;
}


/* ==========================================================
   TEKSTI I LISTES
   ========================================================== */

.farm-task-text {
    padding-top: 0.15rem;

    color: var(--bs-body-color);

    font-size: 1.03rem;
    font-weight: 500;

    line-height: 1.5;
}


/* ==========================================================
   MUAJI AKTUAL
   ========================================================== */

.farm-month-card.is-current {
    border-color:
        rgba(var(--bs-success-rgb), 0.5);

    background:
        linear-gradient(
            140deg,
            rgba(var(--bs-success-rgb), 0.09),
            transparent 45%
        ),
        var(--bs-body-bg);

    box-shadow:
        0 1rem 2.5rem
        rgba(var(--bs-success-rgb), 0.09);
}


.farm-month-card.is-current::before {
    content: "";

    position: absolute;

    top: 0;
    left: 1.75rem;
    right: 1.75rem;

    height: 3px;

    border-radius: 0 0 99px 99px;

    background: var(--bs-success);
}


/* ==========================================================
   DARK MODE
   Bootstrap menaxhon pjesen kryesore me CSS variables.
   ========================================================== */

[data-bs-theme="dark"] .farm-month-card {
    box-shadow:
        0 0.5rem 1.5rem
        rgba(0, 0, 0, 0.12);
}


[data-bs-theme="dark"] .farm-month-card:hover {
    border-color:
        rgba(var(--bs-emphasis-color-rgb), 0.25);

    box-shadow:
        0 1rem 2.75rem
        rgba(0, 0, 0, 0.25);
}


[data-bs-theme="dark"] .farm-month-card.is-current {
    background:
        linear-gradient(
            140deg,
            rgba(var(--bs-success-rgb), 0.15),
            transparent 48%
        ),
        var(--bs-body-bg);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991.98px) {

    .farm-calendar {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

    .farm-calendar {
        gap: 1rem;
    }

    .farm-month-card {
        min-height: auto;

        padding: 1.35rem;

        border-radius: 1.15rem;
    }

    .farm-month-header {
        margin-bottom: 1.1rem;
    }

    .farm-month-title {
        font-size: 1.8rem;
    }

    .farm-task-text {
        font-size: 1rem;
    }

    .farm-season-icon {
        width: 2.8rem;
        height: 2.8rem;
    }

}