/* === BUTTONS === */
button,
.wp-block-button__link {
    font-family: 'Anton', sans-serif; /* Bold, strong font for buttons */
    font-weight: 400; /* Extra emphasis */
    font-size: 16px;
    text-transform: uppercase; /* All caps for impact */
    color: #121212; /* Dark text for contrast with bright button */
    background-color: #FFDD00; /* Bright yellow button for visibility */
    padding: 0.8em 1.5em; /* Comfortable padding */
    border: none;
    border-radius: 6px; /* Rounded corners for modern look */
    cursor: pointer;
    transition: all 0.2s ease-in-out; /* Smooth hover effect */
    text-decoration: none; /* Remove underline if link */
}

/* Hover effect */
button:hover,
.wp-block-button__link:hover {
    background-color: #FFD633; /* Slightly lighter yellow */
    transform: translateY(-2px); /* Slight lift on hover */
}