/* Correction : espace sous le menu fixe */
.main-content {
  margin-top: 80px;
}

.section.home-section,
.section.home-section.active {
  display: block !important;
}
/* accueil.css : Styles spécifiques à la page d'accueil (hero, satellites, etc.) */

.home-section {
  min-height: 420px;
  background: #fff !important;
  color: #222 !important;
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(23,147,178,0.10);
  padding: 80px 0 60px 0;
  margin: 40px auto 0 auto;
  max-width: 1100px;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #fff;
}

.hero-content, .hero-content * {
  color: #222 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: revert !important;
  padding: revert !important;
}

.hero-text {
  z-index: 1;
}

.hero-title {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.title-line.accent {
  background: linear-gradient(135deg, #fff, #00AEEF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #e0f7fa;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-actions .btn {
  background: #fff;
  color: #1793B2;
  border: 2px solid #1793B2;
  border-radius: 2em;
  font-weight: 600;
  font-size: 1.1em;
  padding: 0.7em 2em;
  box-shadow: 0 2px 8px 0 rgba(23,147,178,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero-actions .btn.btn-primary {
  background: linear-gradient(90deg, #1793B2 0%, #00AEEF 100%);
  color: #fff;
  border: none;
}
.hero-actions .btn.btn-primary:hover {
  background: linear-gradient(90deg, #00AEEF 0%, #1793B2 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(23,147,178,0.18);
}

.main-node img {
  width: 80px;
  height: 80px;
}

.psyko-node {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 80px;
  height: 80px;
  animation: orbit 8s linear infinite;
}

.inside-node {
  position: absolute;
  bottom: 18%;
  left: 18%;
  width: 80px;
  height: 80px;
  animation: orbit 10s linear infinite reverse;
}

.reeboot-node {
  position: absolute;
  bottom: 10%;
  right: 25%;
  width: 80px;
  height: 80px;
  animation: orbit 12s linear infinite;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@media (max-width: 900px) {
  .ecosystem-preview {
    width: 260px;
    height: 260px;
  }
  .main-node, .psyko-node, .inside-node, .reeboot-node {
    width: 60px;
    height: 60px;
  }
  .main-node img {
    width: 40px;
    height: 40px;
  }
}

.print-banner {
  margin: 3.5rem 0 2.5rem 0;
  background: linear-gradient(90deg, #1793B2 0%, #00AEEF 100%);
  border-radius: 2rem;
  box-shadow: 0 4px 24px 0 rgba(23,147,178,0.10);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  gap: 2.5rem;
}
.print-banner-text h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.print-banner-text p {
  color: #e0f7fa;
  font-size: 1.15rem;
  margin: 0;
}
.btn.btn-print {
  background: #fff;
  color: #1793B2;
  border: none;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1.15em;
  padding: 0.9em 2.2em;
  box-shadow: 0 2px 8px 0 rgba(23,147,178,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: auto;
  margin-right: 0;
  display: inline-block;
}
.btn.btn-print:hover {
  background: #e0f7fa;
  color: #0072CE;
  box-shadow: 0 4px 16px 0 rgba(23,147,178,0.18);
}
@media (max-width: 700px) {
  .print-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .btn.btn-print {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

