/* Gaspar — Estilos customizados */

.profile-pic {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-pic-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-pic-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
}

.profile-pic-placeholder.profile-pic-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.card-hover {
    transition: box-shadow 0.2s, transform 0.2s;
}

.card-hover:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.metric-value-lg {
    font-size: 2rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge creator (purple) */
.bg-purple {
    background-color: #6f42c1 !important;
    color: #fff;
}

/* Media grid */
.media-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.media-thumb-placeholder {
    width: 100%;
    height: 160px;
}

.media-card {
    transition: box-shadow 0.2s;
}

.media-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Truncate caption to 3 lines */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================================================
   Landing Page
   =================================================================== */

.landing-page {
    background: #fff;
}

.landing-nav {
    background: transparent !important;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.landing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 1rem 5rem;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.landing-feature-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1rem;
}
.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.landing-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3460, #6f42c1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.landing-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f3460;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.landing-beta-card {
    background: #f8f9fa;
    border: 2px dashed #ffc107;
}
