body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  background: radial-gradient(circle at top, #0b0f1a, #000000);
  overflow-x: hidden;
}

/* =========================
   GALAXIE
========================= */
#space {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 70px 20px 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 10px auto;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   LOGO
========================= */
.logo {
  width: 90px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(56,189,248,0.4));
}

/* =========================
   COVER
========================= */
.cover {
  width: 85%;
  max-width: 550px;
  border-radius: 18px;
  margin-top: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.cover:hover {
  transform: scale(1.02);
}

/* =========================
   TITRES SECTIONS
========================= */
h2 {
  font-size: 1.8rem;
  margin: 60px 0 20px;
  color: #7dd3fc;
  letter-spacing: 1px;
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   CARD PREMIUM
========================= */
.card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 16px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card h3 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #ffffff;
}

.card p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* =========================
   BUTTONS
========================= */
button {
  cursor: pointer;
  margin-top: 10px;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(56,189,248,0.4);
}

/* =========================
   LINKS
========================= */
.links a button {
  margin: 6px;
}

/* =========================
   FOOTER
========================= */
footer {
  margin-top: 60px;
  padding: 30px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* =========================
   CONTACT FORM
========================= */
.contact-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
}

.contact-section h2 {
  color: #7dd3fc;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

.contact-form textarea {
  min-height: 140px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
.fragments {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  font-family: Georgia, serif;
  text-align: center;
  color: #e0e0e0;
}

.fragments h2 {
  margin-bottom: 30px;
  font-size: 28px;
  letter-spacing: 2px;
}

.fragment {
  margin-bottom: 25px;
  font-style: italic;
  font-size: 18px;
  opacity: 0.9;
  transition: 0.3s;
}

.fragment:hover {
  opacity: 1;
  transform: scale(1.02);
}
.silence {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
  font-family: Georgia, serif;
  color: #f0f0f0;
  opacity: 0.85;
}

.silence h2 {
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.silence p {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.8;
}

body {
  background: radial-gradient(circle at top, #0b0f1a, #000000);
  color: #e6e6e6;
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
}

h1, h2 {
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: normal;
}

p {
  line-height: 1.8;
  opacity: 0.9;
}

p:hover {
  opacity: 1;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

#space {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

a {
  color: #9ecbff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
section, .hero, .fragment, .manifeste, .silence {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
}
.fragment {
  opacity: 0.7;
  transition: 0.4s ease;
}

.fragment:hover {
  opacity: 1;
  transform: scale(1.02);
}
h1, h2 {
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
body {
  cursor: crosshair;
}


p {
  transition: 0.3s ease;
}

p:hover {
  letter-spacing: 0.5px;
  opacity: 1;
}
.hero {
  transform: translateZ(0);
  will-change: transform;
}
#prologue {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: Georgia, serif;
  text-align: center;
  padding: 20px;
}

#prologue-text {
  font-size: 20px;
  opacity: 0.8;
}
section {
  scroll-margin-top: 80px;
  transition: 1s ease;
}
body {
  background: radial-gradient(circle at center, #05070f, #000000);
  overflow-x: hidden;
}
p {
  line-height: 1.9;
  opacity: 0.85;
  transition: 0.4s ease;
}

p:hover {
  opacity: 1;
  transform: translateX(2px);
}
#silence {
  padding: 100px 20px;
  opacity: 0.7;
}