@charset "UTF-8";
@import url(main.css);
/* Titre principal avec effet de gradient animé */
h1 { font-size: 4rem; background: linear-gradient(45deg, #ECE1C6, #97886D); background-size: 200% 200%; color: transparent; -webkit-background-clip: text; background-clip: text; animation: gradientAnimation 3s ease infinite; text-align: center; margin: 20px 0; /* Ajuste les marges pour mieux s'intégrer */ }

/* Animation du gradient */
@keyframes gradientAnimation { 0% { background-position: 200% 0%; }
  50% { background-position: -200% 0%; }
  100% { background-position: 200% 0%; } }

.custom-card-content, .custom-card-2-content { opacity: 0; }

.custom-card-content:hover, .custom-card-2-content:hover { opacity: 1; }

.websitePageTitle-div { display: none !important; }

.maps-section { width: 100% !important; }

/*# sourceMappingURL=custom.css.map */