/* ==========================================================================
   1. FIVEM RP HUB DIZAINS
   ========================================================================== */
.rp-hub-page {
    padding: 40px 0 80px 0;
}

.hub-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.hub-title {
    border-bottom: none !important;
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
}

.hub-subtitle {
    color: #aaaaaa;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.rp-hub-grid {
    display: grid;
    /* Automātiski pielāgojas ekrānam. Datorā būs 4 rindā vai 2 pa 2 */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hub-card {
    background: var(--bg-card);
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hub-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-8px);
    background: #252525;
    border-color: #444;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.hub-card:hover::after {
    transform: scaleX(1);
}

.hub-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.hub-card:hover .hub-card-icon {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.hub-card h3 {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hub-card p {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}