/**
 * Benefits Page Styles
 * Styles for benefits/donations tier page
 */

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 60vh;
}

/* ===== Royal Header ===== */
.royal-header {
    text-align: center;
    margin-bottom: 30px;
}

.royal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 20px;
    line-height: 1.5;
}

.royal-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #c9a227, #ffd700, #c9a227);
    margin: 0 auto;
    border-radius: 3px;
}

.royal-intro {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 30px auto 50px;
}

.royal-intro strong {
    color: #1a3a5c;
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .royal-title {
        font-size: 1.5rem;
    }
}

/* ===== Benefit Card ===== */
.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.benefit-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.benefit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-image img {
    transform: scale(1.05);
}

/* Card Content */
.benefit-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.benefit-card-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.benefit-card-amount {
    font-size: 0.95rem;
    color: #FA974E;
    font-weight: 600;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* ===== Loading State ===== */
.benefits-loading {
    text-align: center;
    padding: 60px 20px;
}

.benefits-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* ===== Empty State ===== */
.benefits-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

/* ===== Note ===== */
.royal-note {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px;
    background: #e8f4fd;
    border-radius: 10px;
    border-left: 4px solid #3182ce;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: center;
}

.royal-note i {
    color: #3182ce;
    margin-right: 10px;
}