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

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

.btn-homepage {
  background: linear-gradient(90deg, #4f46e5, #6366f1); /* gradient violet */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 9999px; /* arrondi complet */
  box-shadow: 0 10px 15px -3px rgba(79,70,229,0.4), 0 4px 6px -2px rgba(79,70,229,0.2);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-homepage:hover {
  background: linear-gradient(90deg, #4338ca, #4f46e5);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(79,70,229,0.5), 0 6px 8px -2px rgba(79,70,229,0.3);
}

.btn-homepage:active {
  transform: translateY(0);
  box-shadow: 0 6px 10px -3px rgba(79,70,229,0.3), 0 3px 4px -2px rgba(79,70,229,0.2);
}