body {
  margin: 0;
  font-family: Arial;
}

/* TOPBAR */
.topbar {
  background: #c40000;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 12px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: white;
}

.logo img {
  height: 60px;
}

.menu {
  display: flex;
}

.menu a {
  margin: 0 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-actions i {
  margin-right: 10px;
}

.btn-green {
  background: green;
  color: white;
  border: none;
  margin-right: 5px;
  padding: 8px 15px;
}

.btn-red {
  background: red;
  color: white;
  border: none;
  padding: 8px 15px;
}

/* HERO */
.hero {
  min-height: 600px;
  background: url('images/bg.jpg') center/cover no-repeat;
}

.overlay {
  background: rgba(0,0,0,0.6);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.hero-left h1 {
  font-size: 32px;
  line-height: 1.2;
}

.hero-right img {
  height: 300px;
  object-fit: cover;
}






/* ============================
   FIX TEXT COLOR HERO
   ============================ */

.hero-left h1 {
  color: white;        /* retounen koulè blan */
}

.hero-left p {
  color: white;        /* paragraf blan */
  font-weight: bold;   /* fè li an gra */
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
}

.red { color: red; }
.green { color: #00ff88; }

.btn.red { background: red; }
.btn.dark { background: black; }

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  padding: 40px;

  margin-top: 0;        /* ❌ pa gen negatif ankò */
  position: static;     /* retounen nan flux nòmal */
}

.card {
  flex: 1;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

.card.red { background: red; color: white; }
.card.white { background: #eee; }
.card.black { background: black; color: white; }
.card.green { background: green; color: white; }

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .menu {
    display: none;
  }

  .overlay {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    height: 200px;
    margin-top: 20px;
  }

  .cards {
    flex-direction: column;
  }
}







.socials a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: 16px;
}

.socials a:hover {
  opacity: 0.7;
}
