/* Make the buttons look modern and “Wix-like” */
.wp-block-button__link {
background-color: #4d4847 !important; /* Matches your overlay color */
border-radius: 0px !important; /* Wix designs often use sharp edges or very round ones */
padding: 15px 35px !important;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.8rem;
transition: all 0.3s ease;
border: 1px solid #4d4847 !important;
}
.wp-block-button__link:hover {
background-color: transparent !important;
color: #4d4847 !important;
}
/* Fix the spacing of your Welcome section */
.wp-block-heading {
font-family: serif; /* Wix art sites usually use elegant serifs */
font-weight: 300;
font-size: 3rem !important;
line-height: 1.1;
}
/* Soften the paragraph text for that “Editorial” look */
.wp-block-column p {
line-height: 1.8;
color: #333;
font-size: 1.05rem;
}
/* Add a subtle fade-in effect like Wix animations */
.wp-block-group {
animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}