
/* === NEWSLETTER === */
.ce-newsletter-bg {
  background: #0c2340;
  padding: 65px 0;
  text-align: center;
}

.ce-newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  background: #162e4d;
  border-radius: 24px;
  padding: 44px 26px 34px;
  box-shadow: 0 8px 36px rgba(12,35,64,0.15);
}

.ce-newsletter-desc {
  color: #e9eff8;
  font-size: 1.24rem;
  margin-bottom: 27px;
}

.ce-newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ce-newsletter-form input[type="email"] {
  padding: 16px 24px;
  border-radius: 25px;
  border: none;
  font-size: 1.16rem;
  width: 92%;
  max-width: 350px;
  box-shadow: 0 2px 14px rgba(17,34,58,0.09);
}

.ce-newsletter-form button {
  background: #f5761a;
  color: #fff;
  border: none;
  padding: 15px 38px;
  border-radius: 25px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
  box-shadow: 0 2px 12px #f5761a21;
}

.ce-newsletter-form button:hover {
  background: #fff;
  color: #f5761a;
}

.ce-newsletter-success {
  display: block;
  margin-top: 14px;
  color: #2cc36b;
  font-size: 1.11rem;

}

.ce-footer {
  background: #0c2340;
  color: #fff;
  padding: 44px 0 20px 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1px;
}
.ce-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ce-footer-logo img {
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px #f5761a11;
}
.ce-footer-nav {
  margin: 12px 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.ce-footer-nav a {
  color: #f5761a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.07rem;
  transition: color .16s;
}
.ce-footer-nav a:hover {
  color: #fff;
}
.ce-footer-social {
  margin: 16px 0 7px 0;
  display: flex;
  gap: 22px;
  justify-content: center;
}
.ce-footer-social img {
  filter: grayscale(0%) brightness(1) invert(0%) sepia(100%) hue-rotate(-10deg) saturate(400%) brightness(1.1);
  opacity: 0.93;
  transition: opacity .15s;
  width: 24px;  
}
.ce-footer-social a:hover img {
  opacity: 1;
  filter: none;
}
.ce-footer-copy {
  color: #c7d0dd;
  font-size: 0.96rem;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 650px) {
  .ce-footer-inner {padding: 0 3vw;}
  .ce-footer-nav {gap: 11px;}
  .ce-footer-social {gap: 11px;}
  .ce-footer-logo img {height: 26px;}
}

#scrollToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5761a;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.2s ease, transform 0.2s ease;
  display: none; /* caché au chargement */
}
#scrollToTop:hover {
  background: #0c2340;
  transform: scale(1.08);
}