/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


/* Special Hover effect for buttons */
.animated-btn .elementor-button {
  background: linear-gradient(135deg, #C2943C 50%, #082415 50%);
  background-size: 200% 200%; /* double width for animation */
  background-position: top left; /* start with original color visible */
  display: inline-block;
  transition: background-position 0.6s ease; /* smooth animation */
}

.animated-btn .elementor-button:hover {
  background-position: bottom right;
}