/* Site-specific styles carried over from the WordPress site:
   customizer header-text color + the hand-made contact FAB. */

.site-title a,
.colors-dark .site-title a,
body.has-header-image .site-title a,
body.has-header-image.colors-dark .site-title a,
.site-description,
.colors-dark .site-description,
body.has-header-image .site-description,
body.has-header-image.colors-dark .site-description {
    color: #222222;
}

.floating-email-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #4a6741;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.floating-email-btn:hover {
    background-color: #5a7d4f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.floating-email-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}
