/* ================================
   LAYOUT EN LIGNE
================================ */
.horizontal-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ================================
   SIDEBAR : Slideshow
================================ */
.sidebar {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.slider-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.slideshow-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(10, 3, 4, 0.2);
  margin-bottom: 10px;
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ================================
   COMMENTAIRE
================================ */
.comment-box {
  font-size: 0.85em;
  color: #333;
  text-align: center;
  transition: opacity 5s ease;
  opacity: 0;
}

/* ================================
   TITRE CENTRAL
================================ */
.center-title {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white; /* ✅ couleur adaptée au fond sombre */
  text-shadow: 0 0 10px rgba(0,255,255,0.6); /* effet lumineux */
}

.site-tagline {
  font-size: 1,5rem;
  color: #ccc;
}

/* ================================
   SECTION E-MONEY
================================ */
.emoney-section {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.emoney-section h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.logo-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 115px;
  height: auto;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .horizontal-layout {
    flex-direction: column;
    align-items: center;
  }

  .sidebar,
  .center-title,
  .emoney-section {
    max-width: 90%;
  }

  .site-title {
    font-size: 1.2rem;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }

  .logo-circle img {
    width: 70px;
  }
}














