/* /assets/style.css — LifeTips.ro UI (modern, cald, editorial) */

:root{
  --bg: #FBF6EF;            /* bej cald */
  --paper: #FFFFFF;
  --ink: #1F2937;           /* gri inchis */
  --muted: #6B7280;
  --primary: #0E7F72;       /* teal inchis */
  --primary-2: #17A39A;     /* teal accent */
  --accent: #F59E0B;        /* portocaliu cald */
  --chip: #E9F6F4;          /* teal pal pentru badge-uri */
  --card: #FFFFFF;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius-xl: 22px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Containers */
.lt-container{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.lt-main{ padding-bottom: 60px; }

/* Header */
.lt-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(251,246,239,.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.lt-header-row{
  display:flex; align-items:center; gap:16px; padding: 14px 0;
}
.lt-logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.lt-logo-mark{
  width:22px; height:22px; border-radius:6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
}
.lt-logo-text{ font-weight:800; letter-spacing:.2px; color: var(--ink); }
.lt-logo-dot{ color: var(--primary); }

.lt-nav{ display:flex; gap:18px; align-items:center; }
.lt-nav-link{
  color: var(--muted); text-decoration:none; padding:8px 10px; border-radius:10px;
}
.lt-nav-link:hover{ background:#fff; color:var(--ink); box-shadow: var(--shadow); }
.lt-nav-link.is-active{ color: var(--ink); background: #fff; box-shadow: var(--shadow); }

.lt-actions{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.lt-search{ display:flex; align-items:center; gap:6px; background:#fff; padding:6px 8px; border-radius:12px; box-shadow: var(--shadow); }
.lt-search-input{
  border:0; outline:0; background:transparent; min-width:160px; color:var(--ink);
}
.lt-btn{
  border:0; outline:0; cursor:pointer; padding:10px 16px; border-radius:999px;
  font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
}
.lt-btn-primary{ background: var(--primary); color:#fff; }
.lt-btn-primary:hover{ background: var(--primary-2); }
.lt-btn-ghost{ background: #F2F3F5; color: var(--ink); }
.lt-btn-ghost:hover{ background:#E7E9ED; }

.lt-burger{ display:none; width:40px; height:40px; border:0; background:#fff; border-radius:10px; box-shadow: var(--shadow); }
.lt-burger span{ display:block; height:2px; background:#111; margin:7px 8px; }

/* Responsive nav */
@media (max-width: 992px){
  .lt-nav{ position: fixed; top:64px; left:0; right:0; background:#fff; box-shadow: var(--shadow);
           border-radius:0 0 var(--radius) var(--radius); padding:12px 20px; display:none; flex-direction:column; }
  .lt-nav.is-open{ display:flex; }
  .lt-burger{ display:inline-block; }
  .lt-search{ display:none; }
}

/* Hero */
.lt-hero{
  padding: 40px 0 24px;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items:center;
}
@media (max-width: 992px){ .lt-hero{ grid-template-columns: 1fr; } }

.lt-hero-title{ font-size: clamp(32px, 4.2vw, 52px); line-height:1.06; font-weight:800; margin:0 0 10px; }
.lt-chips{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 22px; }
.lt-chip{ background: var(--chip); color: var(--primary); padding:8px 12px; border-radius:999px; font-weight:600; font-size:14px; }

.lt-hero-card{
  background:#fff; border-radius: var(--radius-xl); overflow:hidden; box-shadow: var(--shadow);
}
.lt-hero-card img{ width:100%; height:auto; display:block; }

/* Sections */
.lt-section{ padding: 8px 0 12px; }
.lt-section h2{ font-size: 26px; margin: 14px 0 14px; }

.lt-grid{
  display:grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px){ .lt-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .lt-grid{ grid-template-columns: 1fr; } }

.lt-card{
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow:hidden; display:flex; flex-direction:column;
}
.lt-thumb{ aspect-ratio: 16/10; width:100%; object-fit:cover; display:block; }
.lt-card-body{ padding: 14px 16px 18px; }
.lt-badge{
  display:inline-block; background:#EDE9FE; color:#4C1D95; font-weight:700; font-size:12px;
  padding:6px 10px; border-radius:999px; margin-bottom:10px;
}
.lt-title{ font-size:18px; line-height:1.35; font-weight:800; margin:0 0 8px; }
.lt-excerpt{ color: var(--muted); margin:0; }

.lt-card-row{ display:flex; gap:14px; align-items:center; justify-content:space-between; padding: 14px 16px; border-top:1px solid #F0EFEA; }
.lt-link{ text-decoration:none; color: var(--primary); font-weight:700; }
.lt-link:hover{ color: var(--primary-2); }

/* Newsletter */
.lt-news{
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow);
  padding: 22px; display:flex; gap:16px; align-items:center; justify-content:space-between; margin: 26px 0 12px;
}
.lt-news input{
  width: 100%; max-width: 380px; padding: 12px 14px; border-radius: 12px; border:1px solid #E6E3DC;
}

/* Footer */
.lt-footer{ background:#fff; border-top:1px solid #EEE3D6; }
.lt-footer-top{ padding: 28px 0; display:grid; grid-template-columns: .9fr 1.1fr; gap:20px; }
.lt-footer-bottom{ border-top:1px solid #F1ECE4; padding:14px 0; display:flex; align-items:center; justify-content:space-between; color:var(--muted); }
.lt-footer-links{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.lt-foot-h{ margin: 0 0 10px; font-size:14px; text-transform:uppercase; letter-spacing:.8px; color:var(--muted); }
.lt-footer a{ color: var(--ink); text-decoration:none; }
.lt-footer a:hover{ color: var(--primary); }
.lt-muted{ color: var(--muted); }
.lt-socials a{ display:inline-flex; width:34px; height:34px; align-items:center; justify-content:center; background:#F5F5F5; border-radius:8px; margin-left:8px; }

/* Utilities */
.mt-2{ margin-top: .5rem; } .mt-3{ margin-top: .75rem; } .mt-4{ margin-top: 1rem; }
.mb-0{ margin-bottom:0; } .mb-1{ margin-bottom:.25rem; } .mb-2{ margin-bottom:.5rem; } .mb-3{ margin-bottom:.75rem; }
.text-center{ text-align:center; }
