/**
 * Contact Button Styles
 */

/* Fixed position contact button */
.fixed-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.8); /* Fallback for older browsers */
    border: 2px solid #E09F5D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1000;
}

/* Apply glass effect only when backdrop-filter is supported */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .fixed-contact-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.fixed-contact-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Inline contact button (CTA) */
.contact-cta-btn {
    background: #ffffff;
    color: #E09F5D;
    border: 2px solid #E09F5D;
}

.contact-cta-btn:hover {
    background: #E09F5D;
    color: #ffffff;
}
