/* BUTTONS */
.btn-primary,
.btn-secondary {
    padding: calc(12px * var(--ui-scale)) calc(24px * var(--ui-scale));
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--secondary-font);
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-size: inherit;
    line-height: 1.2;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 calc(4px * var(--ui-scale)) calc(10px * var(--ui-scale)) rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 calc(6px * var(--ui-scale)) calc(16px * var(--ui-scale)) rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    color: black;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: translateY(calc(-3px * var(--ui-scale)));
}

.social-icons img {
    width: 2rem;
    height: 2rem;
}
