/* ============================================
   COMPONENTS: Buttons, Badges, Cards, Tags
   ============================================ */

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(30, 64, 175, 0.45);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
}

/* Badges */
.highlight {
    color: #fbbf24;
    font-weight: 800;
}

/* Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tags span {
    background: var(--bg-light);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.skill-tags span:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.3);
}

.skill-tags span.past-skill {
    opacity: 0.6;
    font-style: italic;
}

.skill-tags span.past-skill:hover {
    opacity: 0.9;
}

.skill-tag-highlight {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(37, 99, 235, 0.1)) !important;
    border: 1px solid rgba(30, 64, 175, 0.2) !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.skill-tag-highlight:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    border: 1px solid transparent !important;
}
