/**
 * EDU.ro — layout: bandă tricoloră + topband gov, antet, navigație, footer.
 */

/* ===== Bandă tricoloră (accent gov.ro) ===== */
.edu-tricolor {
  height: 4px;
  background: linear-gradient(
    to right,
    var(--ro-blue) 0 33.33%,
    var(--ro-yellow) 33.33% 66.66%,
    var(--ro-red) 66.66% 100%
  );
}

/* ===== Topband (bandă oficială) ===== */
.edu-topband {
  background: var(--edu-blue-800);
  color: #cdd9ea;
  font-size: 0.8125rem;
}
.edu-topband__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 36px;
}
.edu-topband__badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 500; color: #e8eef7;
}
.edu-topband__badge svg { width: 18px; height: 12px; flex: none; border-radius: 2px; }
.edu-topband__nav { display: flex; gap: 1.25rem; align-items: center; }
.edu-topband__nav a { color: #cdd9ea; }
.edu-topband__nav a:hover { color: #fff; text-decoration: underline; }

/* ===== Google Translate — selector limbă în topband ===== */
.edu-gtranslate { display: inline-flex; align-items: center; line-height: 1; }
.edu-gtranslate .goog-te-gadget { font-size: 0 !important; color: transparent; margin: 0; }
.edu-gtranslate .goog-te-combo {
  font-size: 0.8125rem !important; color: #cdd9ea; background: var(--edu-blue-800, #082e6e);
  border: 1px solid rgb(255 255 255 / 30%); border-radius: 4px;
  padding: 0.12rem 0.4rem; margin: 0; cursor: pointer; max-width: 160px;
}
.edu-gtranslate .goog-te-combo option { color: #1f2733; background: #fff; }
.edu-gtranslate img { display: none; }
/* Curățăm chrome-ul implicit Google (banner sus + tooltip-uri) + nu împinge body-ul. */
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ===== Antet principal ===== */
.edu-header { background: #fff; border-bottom: 1px solid var(--edu-line); }
.edu-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
}
.edu-header__aux { display: flex; align-items: center; gap: 1rem; flex: none; }

/* ===== Brand (sigla + wordmark) ===== */
.edu-brand { display: flex; align-items: center; gap: 0.85rem; }
.edu-brand__logo { display: block; flex: none; }
.edu-brand__logo img { height: 52px; width: auto; }
.edu-brand__text {
  display: flex; flex-direction: column; line-height: 1.15;
  text-decoration: none !important;
}
.edu-brand__eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--edu-muted);
}
.edu-brand__name {
  font-size: 1.05rem; font-weight: 700; color: var(--edu-blue);
  letter-spacing: -0.01em; text-transform: uppercase;
}

/* ===== Antet + navigație: grup lipit sus la scroll (logo + search + meniu) =====
   Banda tricoloră + banda oficială derulează deasupra; logo, search și meniul
   rămân fixe. Wrapper sticky ca să se miște împreună (nu suprapuse). */
.edu-headerwrap { position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 6px rgb(0 0 0 / 8%); }

/* ===== Navigație principală (bară albastră) ===== */
.edu-nav { background: var(--edu-blue); }
.edu-nav__inner { display: flex; }

/* ===== Footer ===== */
.edu-footer { background: var(--edu-navy); color: #c7d2e2; margin-top: 3rem; flex-shrink: 0; }
.edu-footer__inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  padding-block: 2.5rem;
}
.edu-footer__h {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: #fff; margin: 0 0 0.9rem;
}
.edu-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.edu-footer a { color: #c7d2e2; }
.edu-footer a:hover { color: #fff; text-decoration: underline; }
.edu-footer__org { font-weight: 700; color: #fff; margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.edu-footer__addr { font-style: normal; font-size: 0.9rem; line-height: 1.6; color: #aab8cc; }
.edu-footer__addr a { color: #aab8cc; }
/* Sub-blocuri în coloană (al 2-lea titlu) + social orizontal (structură edu.ro) */
.edu-footer__h:not(:first-child) { margin-top: 1.4rem; }
.edu-footer .edu-footer__social { flex-direction: row; flex-wrap: wrap; gap: 1.1rem; margin-top: 0.5rem; }
/* Iconițe albe Facebook/Instagram (SVG inline) */
.edu-footer__social a { display: inline-flex; align-items: center; color: #fff; }
.edu-footer__social a:hover { color: #fff; opacity: 0.7; text-decoration: none; }
.edu-social-icon { width: 26px; height: 26px; fill: currentColor; display: block; }
.edu-footer__bar { border-top: 1px solid rgb(255 255 255 / 12%); font-size: 0.82rem; }
.edu-footer__barinner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; min-height: 52px; color: #9fb0c6;
}
.edu-footer__gov { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .edu-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .edu-header__inner { flex-direction: column; align-items: flex-start; gap: 0.85rem; min-height: 0; padding-block: 1rem; }
  .edu-header__aux { width: 100%; justify-content: space-between; }
  .edu-topband__nav { display: none; }
  .edu-footer__inner { grid-template-columns: 1fr; }
  .edu-footer__barinner { flex-direction: column; align-items: flex-start; }
}
