/* RESET */
body {
  margin: 0;
  padding: 0;
}

/* FOOTER GLOBAL */
.footer {
  background: linear-gradient(180deg, #0b0f1a, #070b14);
  color: #cbd5e1;
  padding: 50px 0 20px 0;
  border-top: 1px solid rgba(0, 217, 255, 0.15);
  font-family: Arial, sans-serif;
}

/* TITRES */
.footer h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* LISTES */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin: 8px 0;
}

/* LINKS */
.footer ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px; 
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #00d9ff;
  padding-left: 5px;
}

/* CONTACT TEXT */
#contact p {
  font-size: 14px;
  margin: 6px 0;
  color: #94a3b8;
}

/* NEWSLETTER */
.newsletter-box {
  width: 100%;
}

.newsletter-container {
  display: flex;
  width: 100%;
  gap: 8px;
}

.newsletter-container input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #fffffff6;
  color: #000000;
  border-radius: 6px;
}

.newsletter-container input::placeholder {
  color: #64748b;
}

.newsletter-container button {
  padding: 10px 15px;
  border: none;
  background: #3DBFE9;
  color: #fff7f7;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-container button:hover {
  background: #49c2f0;
}
/* MESSAGE */
.newsletter-msg{
  margin-top: 12px;
  font-size: 17px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-5px);
  transition: 0.3s ease;

   max-width: 100%;
  width: fit-content;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.newsletter-msg.show {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-msg.success {
  background: rgba(0, 217, 255, 0.12);
  color: #00d9ff;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.newsletter-msg.error {
  background: rgba(255, 77, 77, 0.12);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

/* SOCIAL */
.social-media {
  margin-top: 15px;
}

.social-title {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #00d9ff;
  color: #000;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  margin-top: 25px;
  color: #64748b;
  padding-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
  }

  .newsletter-container button {
    width: 100%;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}