/**
 * AAS-FOG — Reusable UI components.
 *
 * @package AAS_FOG
 */

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* Primary — accent orange */
.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(181, 84, 30, 0.2);
}

/* Outline — navy border */
.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: #fff;
}

/* Ghost — subtle border */
.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}

.btn--ghost:hover {
    background: var(--sand);
    color: var(--text);
    border-color: var(--border);
}
