body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f5f7fb;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a1f3d;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container img.logo {
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: #48a9f8;
}

.burger {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* HEADER / HERO */
.blog-header {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at top, #213b6b, #050b16);
}

.header-content h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.header-content .subtitle {
  font-size: 1.1rem;
  color: #9acbff;
}

.header-content .tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #d7e6ff;
}

/* ARTICLE LAYOUT */
.breaking-article {
  max-width: 1150px;
  margin: 40px auto;
  padding: 0 16px 40px;
}

.article-section {
  margin-bottom: 40px;
}

.article-section h2 {
  font-size: 1.6rem;
  color: #0a1f3d;
  border-left: 4px solid #48a9f8;
  padding-left: 10px;
  margin-bottom: 14px;
}

.article-section p {
  line-height: 1.7;
}

/* CHART CARDS */
.charts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.chart-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(10, 31, 61, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.chart-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.chart-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

.chart-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* INSIGHTS LIST */
.insights-list {
  margin-top: 18px;
  padding-left: 18px;
}

.insights-list li {
  margin-bottom: 6px;
}

/* RISK MATRIX */
.risk-matrix {
  margin-top: 50px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.risk-card {
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.risk-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.risk-card.high {
  background: #c0392b;
}

.risk-card.medium-high {
  background: #e67e22;
}

.risk-card.medium {
  background: #f1c40f;
  color: #222;
}

.risk-card.opportunity {
  background: #27ae60;
}

/* FOOTER CTA */
.article-footer .cta {
  margin-top: 30px;
  text-align: center;
  font-weight: 600;
  color: #0a1f3d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 52px;
    flex-direction: column;
    background: #0a1f3d;
    width: 100%;
    padding: 12px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}
/* HEADER / HERO */
.blog-header {
  position: relative;
  padding: 80px 20px 70px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(circle at top, #213b6b, #050b16);
}

/* Overlay subtil (poți ajusta opacitatea sau elimina) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(72, 169, 248, 0.18),
    rgba(10, 31, 61, 0.85)
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* GRAFIC ECONOMIC (linie animată) */
.hero-graph {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 120px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-graph-line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;

  /* Truc pentru animația de „desenare” */
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2.5s ease-out forwards, graphGlow 4s ease-in-out infinite 2.5s;
}

/* Bare de creștere */
.hero-bars {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.hero-bars span {
  width: 6px;
  height: 18px;
  background: #48a9f8;
  border-radius: 3px;
  animation: riseBars 1.2s infinite ease-in-out;
  opacity: 0.85;
}

.hero-bars span:nth-child(1) { animation-delay: 0s; }
.hero-bars span:nth-child(2) { animation-delay: 0.1s; }
.hero-bars span:nth-child(3) { animation-delay: 0.2s; }
.hero-bars span:nth-child(4) { animation-delay: 0.3s; }
.hero-bars span:nth-child(5) { animation-delay: 0.4s; }

/* TEXT – intrare cinematică */
.header-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease-out forwards;
  opacity: 0;
  transform: translateY(15px);
}

.header-content h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.header-content .subtitle {
  font-size: 1.1rem;
  color: #9acbff;
}

.header-content .tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #d7e6ff;
}

/* ANIMAȚII */

/* Desenează linia graficului */
@keyframes drawLine {
  0%   { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

/* Puls subtil al graficului după desenare */
@keyframes graphGlow {
  0%   { opacity: 0.25; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50%  { opacity: 0.55; filter: drop-shadow(0 0 10px rgba(255,255,255,0.55)); }
  100% { opacity: 0.3; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
}

/* Barele care „respiră” ca un grafic de volum */
@keyframes riseBars {
  0%   { height: 18px; opacity: 0.4; }
  50%  { height: 42px; opacity: 1; }
  100% { height: 18px; opacity: 0.4; }
}

/* Intrarea textului */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive ajustare ușoară */
@media (max-width: 768px) {
  .blog-header {
    padding: 70px 16px 60px;
  }

  .header-content h1 {
    font-size: 1.9rem;
  }

  .hero-graph {
    height: 90px;
  }
}
.menu-sec {
  display: flex;
  justify-content: center; /* CENTRARE */
  align-items: center;
  gap: 22px; /* spațiere premium */
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-sec li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.90rem;
  padding: 8px 14px; /* butonizare */
  border-radius: 6px; /* colțuri elegante */
  transition: all 0.25s ease;
}

/* Hover premium */
.menu-sec li a:hover {
  background: rgba(255,255,255,0.12);
  color: #48a9f8;
}

/* Link activ */
.menu-sec li a.active {
  background: #48a9f8;
  color: #0a1f3d;
  font-weight: 400;
  box-shadow: 0 0 10px rgba(72,169,248,0.4);
}
/* Footer */
.predictii-footer {
  padding: 24px;
  text-align: center;
  font-size: 0.9rem;
  background-color: #f5f5f5;
  color: #666;
}
