/*
 Theme Name:  Divi Child Theme
 Theme URI:    https://akoca-seo.co.uk
 Description:  Child Theme for Divi
 Author:       Jordan Farrar
 Author URI:   https://akoca-seo.co.uk
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/

/* Sticky Whatsapp CTA Button Styling */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* subtle drop shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect */
.whatsapp-button:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35); /* slightly stronger shadow on hover */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button img {
        width: 50px;
        height: 50px;
        padding: 4px; /* Adjust padding for smaller screens */
    }
}
