/* --- news.css (Adapté Luxe Sombre) --- */

:root {
  --bg-main: #050505;
  --bg-secondary: #0f0f0f;
  --accent-gold: #d4af37;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-subtle: rgba(255, 255, 255, 0.08);

  --construction-color: #f1c40f; /* Jaune chantier */
  --future-color: #5d9cec; /* Bleu futur */
}

body {
  background-color: var(--bg-main);
  background-image: radial-gradient(
    circle at 50% 0%,
    #1a1500 0%,
    var(--bg-main) 60%
  );
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Spécifique */
.news-header {
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
}

.badge-header {
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent-gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-block;
  margin-bottom: 1rem;
}

.news-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.text-gold {
  color: var(--accent-gold);
  font-style: italic;
}

.news-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Container */
.roadmap-container {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

/* Sections */
.roadmap-section {
  margin-bottom: 4rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

.status-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}

.status-tag.building {
  background: rgba(241, 196, 15, 0.1);
  color: var(--construction-color);
  border: 1px solid rgba(241, 196, 15, 0.3);
}
.status-tag.planned {
  background: rgba(93, 156, 236, 0.1);
  color: var(--future-color);
  border: 1px solid rgba(93, 156, 236, 0.3);
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  margin-left: 0;
  font-size: 0.95rem;
}

/* Grilles de cartes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-icon {
  font-size: 2rem;
  display: block;
}

/* --- Style "En Construction" (WIP) --- */
.construction-zone .feature-card.wip {
  border-left: 2px solid var(--construction-color);
}

.construction-zone .feature-card:hover {
  border-color: var(--construction-color);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.65rem;
  color: var(--construction-color);
  border: 1px solid var(--construction-color);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  background: rgba(241, 196, 15, 0.05);
}

/* Barre de progression */
.progress-container {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  background: var(--construction-color);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.4);
}

.progress-text {
  font-size: 0.75rem;
  color: var(--construction-color);
  font-weight: 600;
}

/* --- Style "Futur" --- */
.future-zone .feature-card {
  opacity: 0.8;
  border-style: dashed;
}

.future-zone .feature-card:hover {
  opacity: 1;
  border-style: solid;
  border-color: var(--future-color);
  background: rgba(93, 156, 236, 0.05);
}

.future-zone .feature-icon {
  margin-bottom: 1rem;
  color: var(--future-color);
}

/* Séparateur */
.roadmap-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0;
  opacity: 0.4;
}

.roadmap-divider .line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  width: 100px;
}

.roadmap-divider .circle {
  font-size: 1.2rem;
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Footer (Hérité) */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem;
  background: var(--bg-main);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-nav-group {
  display: flex;
  gap: 4rem;
}

.footer-col h5 {
  color: var(--accent-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-copy {
  width: 100%;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 1rem;
  color: #444;
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .news-header h1 {
    font-size: 2.5rem;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav-group {
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }
}
