/* ========================================
   Buttons
   All button styles used throughout the site
   ======================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

/* Primary button (gold background) */
.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Secondary button (outlined) */
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Pill button - white background, used in nav and forms */
.btn-pill {
    background-color: white;
    color: var(--color-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid white;
    outline: 0px solid var(--color-border);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: auto;
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-pill:hover {
    background-color: var(--color-secondary);
    color: white;
    outline-color: var(--color-secondary);
    box-shadow: var(--box-shadow-hover);
}

/* Text button (like a link with arrow) */
.btn-text {
    padding: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.btn-text:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Full width button */
.btn-full {
    width: 100%;
}