:root { --primary-color: #1a365d; --secondary-color: #2b6cb0; } body { font-family: 'Inter', sans-serif; transition: background-color 0.5s ease; } .hero-section { height: 60vh; background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../cootralim/public/img/contact-hero.jpg'); background-size: cover; background-position: center; background-attachment: fixed; } .contact-card { transform: translateY(0); transition: transform 0.3s ease; } .contact-card:hover { transform: translateY(-10px); } #cookie-banner { z-index: 9999; } #language-menu { z-index: 1000; /* Assurez-vous que le z-index est suffisamment élevé */ position: absolute; /* Assurez-vous que le positionnement est correct */ right: 0; margin-top: 0.5rem; /* Ajustez selon vos besoins */ width: 12rem; /* Ajustez selon vos besoins */ background-color: white; border: 1px solid #ccc; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }