/* [TRANSFERWIRE] CSS PRO WAOUH – Ultra stylisé, viral & responsive */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6f9;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ====== HEADER & NAVIGATION ====== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 800;
  color: #0056b3 !important;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link {
  color: #0056b3 !important;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: #ffcc00 !important;
  transform: scale(1.05);
}

/* ====== HERO SECTION ====== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #0056b3, #00bfff);
  background-size: cover;
  background-position: center;
  position: relative;
  animation: fadeInHero 2s ease;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  animation: fadeInUp 1.5s ease;
}

/* ====== BOUTONS ====== */
.btn-primary {
  background-color: #0056b3;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #002855;
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ====== CARTES ====== */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ====== FOOTER ====== */
footer {
  background: #002855;
  color: #fff;
  padding: 40px 15px;
  font-size: 0.95rem;
  text-align: center;
}

footer p {
  margin: 8px 0;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #fff200;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 15px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
