/* ================================================================
   BASE.CSS — Tipografie, utilitare, placeholdere, butoane
   ================================================================ */

/* ===== SETĂRI GLOBALE ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TIPOGRAFIE ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw,   2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw,   1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw,   1.3rem); }
p  { font-weight: 300; line-height: 1.8; }
em, i {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
}
a { color: var(--lavender); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== UTILITARE ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 80px 0; }
.section-alt   { background: var(--cream-dark); }
.section-dark  { background: var(--plum); color: var(--cream); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lav-pale);
  color: var(--plum);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ===== PLACEHOLDERE IMAGINI / ICONURI ===== */
.img-ph {
  background: linear-gradient(135deg, var(--lav-pale) 0%, var(--cream-dark) 100%);
  border: 1.5px dashed var(--lav-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: .72rem;
  font-family: var(--font-body);
  text-align: center;
  font-weight: 500;
  letter-spacing: .04em;
}
.img-ph-icon {
  width: 30px;
  height: 30px;
  border: 1.5px dashed var(--lav-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem;
  color: var(--text-muted);
  font-weight: 600;
}
.img-ph.dark {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.4);
}
.img-ph.dark .img-ph-icon {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.3);
}

.icon-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px dashed var(--lav-light);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .58rem;
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  line-height: 1.2;
}
.icon-ph.sm  { width: 28px; height: 28px; font-size: .5rem; }
.icon-ph.dark { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.35); }

/* ===== BUTOANE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--lavender);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 126, 196, .35);
}
.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  padding: 12px 26px;
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
  text-decoration: none;
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  padding: 12px 24px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  text-decoration: none;
}
.btn-sm   { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }
