/* 400H Universal Partners — Frontend Styles */

.hbp-section {
    margin: 2.5rem 0;
}

.hbp-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2A25;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F0EBE3;
}

/* ---- Card Grid ---- */
.hbp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

/* ---- Individual Card ---- */
.hbp-card {
    background: #ffffff;
    border: 1px solid #F0EBE3;
    border-radius: 14px;
    padding: 1.25rem 1.375rem 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hbp-card-live:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.hbp-card-soon {
    opacity: 0.65;
}

.hbp-card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2C2A25;
    line-height: 1.3;
}

.hbp-card-desc {
    font-size: 0.85rem;
    color: #6B6660;
    line-height: 1.6;
    flex: 1;
}

.hbp-card-footer {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F5F1EC;
}

/* ---- Visit Button ---- */
.hbp-btn {
    display: inline-block;
    background: #C8652A;
    color: #ffffff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hbp-btn:hover {
    background: #A8521F;
    color: #ffffff;
}

/* ---- Coming Soon Badge ---- */
.hbp-soon-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9E9890;
    background: #F5F1EC;
    border-radius: 40px;
    padding: 0.3rem 0.875rem;
}

/* ---- Coming Soon (no vendors at all) ---- */
.hbp-coming-soon {
    background: #FAF8F4;
    border: 1px dashed #E8E2D9;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    color: #9E9890;
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .hbp-cards {
        grid-template-columns: 1fr;
    }
}
