/* ═══════════════════════════════════════════
   NICOLETA MIHU — WordPress Additional CSS
   Copiază tot în: Appearance → Customize →
   Additional CSS  (sau Site Editor → Styles)
═══════════════════════════════════════════ */

/* ── 1. VARIABILE CULORI ── */
:root {
  --nm-cream:   #FAF9F6;
  --nm-warm:    #EDE4D9;
  --nm-sage:    #7A9E7E;
  --nm-sage-l:  #B8CEB8;
  --nm-sage-d:  #4E6E52;
  --nm-ink:     #26241F;
  --nm-mid:     #6B6660;
}

/* ── 2. BACKGROUND GLOBAL ── */
body,
.wp-site-blocks {
  background-color: var(--nm-cream) !important;
  color: var(--nm-ink) !important;
}

/* ── 3. SMOOTH SCROLL ── */
html {
  scroll-behavior: smooth;
}

/* ── 4. HEADER STICKY + BLUR ── */
.wp-block-template-part[data-slug="header"],
header.wp-block-template-part,
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250,249,246,0.88) !important;
  border-bottom: 0.5px solid rgba(122,158,126,0.2);
  transition: background 0.3s ease;
}

/* ── 5. FONTURI ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
body, p, a, li, button, input, label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* ── 6. BUTOANE ── */
.wp-block-button__link {
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.wp-block-button__link:hover {
  background: var(--nm-sage-d) !important;
  color: var(--nm-cream) !important;
  border-color: var(--nm-sage-d) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid var(--nm-sage) !important;
  color: var(--nm-sage-d) !important;
  background: transparent !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--nm-sage) !important;
  color: #fff !important;
}

/* ── 7. NAVIGARE MENIU ── */
.wp-block-navigation a {
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nm-mid) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.wp-block-navigation a:hover {
  color: var(--nm-sage-d) !important;
}

/* ── 8. SEPARATOR ── */
.wp-block-separator {
  border-color: rgba(122,158,126,0.2) !important;
  border-width: 0.5px !important;
}

/* ── 9. QUOTE / TESTIMONIALE ── */
.wp-block-quote {
  border-left: 2px solid var(--nm-sage-l) !important;
  padding-left: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.75;
}
.wp-block-quote p {
  color: var(--nm-ink);
}
.wp-block-quote cite {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nm-sage-d);
  font-style: normal;
}

/* ── 10. ANIMAȚIE FADE UP ── */
@keyframes nmFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-block-group,
.wp-block-columns,
.wp-block-cover,
.wp-block-media-text {
  animation: nmFadeUp 0.7s ease both;
}

/* ── 11. TICKER ANIMAT ── */
@keyframes nmTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap {
  overflow: hidden;
  background: var(--nm-ink);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: nmTicker 30s linear infinite;
}
.ticker-item {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

/* ── 12. LINK-URI GLOBALE ── */
a {
  color: var(--nm-sage-d);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--nm-sage);
}

/* ── 13. SECȚIUNI CU BACKGROUND ── */
.section-warm {
  background: var(--nm-warm) !important;
}
.section-dark {
  background: var(--nm-ink) !important;
  color: rgba(255,255,255,0.75) !important;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--nm-cream) !important;
}

/* ── 14. HOVER PE GRID COLOANE ── */
.wp-block-column {
  transition: background 0.25s ease;
}
.hover-grid .wp-block-column:hover {
  background: #e0d8cc !important;
  cursor: default;
}

/* ── 15. INPUT-URI FORMULAR ── */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 12px 16px !important;
  background: var(--nm-cream) !important;
  border: 0.5px solid rgba(122,158,126,0.3) !important;
  border-radius: 0 !important;
  color: var(--nm-ink) !important;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--nm-sage) !important;
  box-shadow: none !important;
}

/* ── 16. FOOTER ── */
.wp-block-template-part[data-slug="footer"],
footer.wp-block-template-part {
  background: var(--nm-ink) !important;
  color: rgba(255,255,255,0.35) !important;
}
.wp-block-template-part[data-slug="footer"] a {
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.wp-block-template-part[data-slug="footer"] a:hover {
  color: var(--nm-sage-l) !important;
}

/* ── 17. SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--nm-cream); }
::-webkit-scrollbar-thumb {
  background: var(--nm-sage-l);
  border-radius: 3px;
}

/* ── 18. MOBIL RESPONSIVE ── */
@media (max-width: 768px) {
  h1 { font-size: clamp(36px, 10vw, 56px) !important; }
  h2 { font-size: clamp(28px, 7vw, 44px) !important; }
  .wp-block-columns { flex-direction: column !important; }
  .wp-block-column { width: 100% !important; min-width: 100% !important; }
  .wp-block-cover { min-height: 60vh !important; }
}

/* ── SFÂRȘIT CSS NICOLETA MIHU ── */