/**
 * BT Firestore Prayer Feed Styles
 * Matches the design at brooklyntabernacle.org/prayers/
 */

/* Container */
.bt-prayer-feed {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Grid Layout - 2 columns */
.bt-prayer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Individual Prayer Tile */
.bt-prayer-tile {
    display: flex;
    flex-direction: column;
    height: 315px;
    padding: 38px 55px 40px 55px;
    margin: 15px 0 15px 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .15) 0 10px 51px 3px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.bt-prayer-tile:hover {
    /* No hover effects */
}

/* Prayer Content */
.bt-prayer-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.bt-prayer-text {
    font-weight: 500;
    font-size: 23px;
    line-height: 34px;
    color: #333;
    margin: 0 0 20px 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bt-prayer-attribution {
    font-size: 16px;
    line-height: 1em;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    margin-top: auto;
}

/* Empty State */
.bt-prayer-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.bt-prayer-empty p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Loading Skeleton */
.bt-prayer-tile-skeleton {
    background-color: #f5f5f5;
    pointer-events: none;
}

.bt-prayer-tile-skeleton:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bt-prayer-skeleton-text,
.bt-prayer-skeleton-attribution {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    height: 16px;
    margin-bottom: 10px;
}

.bt-prayer-skeleton-text.short {
    width: 60%;
    margin: 0 auto 10px;
}

.bt-prayer-skeleton-attribution {
    width: 40%;
    margin: 20px auto 0;
    height: 14px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Pagination */
.bt-prayer-pagination {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.bt-pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bt-pagination-link,
.bt-pagination-number,
.bt-pagination-ellipsis {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #f5f5f5;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.bt-pagination-link:hover,
.bt-pagination-number:hover {
    background-color: #e0e0e0;
    color: #000;
}

.bt-pagination-link.disabled {
    color: #999;
    pointer-events: none;
    opacity: 0.6;
}

.bt-pagination-number.current {
    background-color: #333;
    color: #fff;
    font-weight: 600;
}

.bt-pagination-ellipsis {
    background-color: transparent;
    pointer-events: none;
    padding: 10px 5px;
}

.bt-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Error State */
.bt-prayer-feed-error {
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.bt-prayer-feed-error p {
    color: #c00;
    margin: 0;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bt-prayer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bt-prayer-tile {
        padding: 15px;
        margin: 0 0 15px 0;
        height: auto;
        min-height: 200px;
    }

    .bt-prayer-content {
        padding: 10px;
    }

    .bt-prayer-text {
        font-size: 18px;
        line-height: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .bt-prayer-attribution {
        font-size: 14px;
        line-height: 1.2em;
    }

    .bt-pagination-container {
        gap: 5px;
    }

    .bt-pagination-link,
    .bt-pagination-number {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bt-prayer-feed {
        padding: 10px;
    }

    .bt-prayer-tile {
        padding: 12px;
        margin: 0 0 12px 0;
        min-height: 180px;
    }

    .bt-prayer-content {
        padding: 8px;
    }

    .bt-prayer-text {
        font-size: 16px;
        line-height: 24px;
    }

    .bt-prayer-attribution {
        font-size: 12px;
        line-height: 1.2em;
    }

    .bt-pagination-link,
    .bt-pagination-number {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .bt-prayer-pagination {
        display: none;
    }

    .bt-prayer-tile {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .bt-prayer-tile:hover {
        transform: none;
    }
}
