/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px; /* Rounded corners */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #FFFFFF; /* Heading Text Color for better contrast */
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    background-color: var(--primary-color-dark); /* Darker variation of #F4B942 */
    color: #FFFFFF; /* Heading Text Color for better contrast */
}


.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Note: General responsive adjustments for buttons are in responsive.css */