/* 01: psychologistsinlebanon.com — main.css (minimal, fast, responsive) */

/* 05: Base */
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#f9fafb;
  --brand:#0ea5e9;
  --brand2:#0284c7;
  --shadow:0 10px 24px rgba(0,0,0,.08);
  --radius:14px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--brand2);text-decoration:none}
a:hover{text-decoration:underline}
p{margin:0 0 1rem}
h1,h2,h3{line-height:1.2;margin:0 0 .75rem}
h1{font-size:2rem}
h2{font-size:1.5rem}
h3{font-size:1.2rem}
small{color:var(--muted)}
hr{border:0;border-top:1px solid var(--line);margin:2rem 0}

/* 48: Layout helpers */
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 16px;
}
.section{padding:48px 0}
.grid{
  display:grid;
  gap:16px;
}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .section{padding:36px 0}
  h1{font-size:1.75rem}
}

/* 72: Header / Nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(8px);
  border-bottom:1px solid var(--line);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
  color:var(--text);
}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:0 10px 20px rgba(2,132,199,.25);
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.nav a{
  display:inline-block;
  padding:8px 10px;
  border-radius:10px;
  color:var(--text);
}
.nav a:hover{
  text-decoration:none;
  background:var(--card);
}
.nav a.is-active{
  background:var(--card);
  border:1px solid var(--line);
}

/* 118: Hero */
.hero{
  padding:42px 0 10px;
}
.hero .kicker{
  display:inline-block;
  font-weight:700;
  color:var(--brand2);
  background:rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.20);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:12px;
}
.hero p{color:#374151}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

/* 145: Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.btn:hover{text-decoration:none;background:var(--card)}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border-color:transparent;
  color:#fff;
}
.btn-primary:hover{filter:brightness(.98)}
.btn-link{
  border-color:transparent;
  background:transparent;
  color:var(--brand2);
  padding:10px 0;
}

/* 173: Cards / Lists */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.card.shadow{box-shadow:var(--shadow);background:#fff}
.card h3{margin-bottom:.5rem}
.meta{color:var(--muted);font-size:.95rem}
.badge{
  display:inline-block;
  font-size:.85rem;
  color:#0b4a6f;
  background:rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.20);
  padding:4px 10px;
  border-radius:999px;
}

/* 198: Article content */
.prose{
  max-width:760px;
}
.prose ul,.prose ol{padding-left:1.2rem;margin:0 0 1rem}
.prose li{margin:.35rem 0}
.prose blockquote{
  margin:1.2rem 0;
  padding:12px 14px;
  border-left:4px solid var(--brand);
  background:rgba(14,165,233,.07);
  border-radius:12px;
}

/* 214: Forms (contact) */
.input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}
.input:focus{outline:2px solid rgba(14,165,233,.25);border-color:rgba(14,165,233,.55)}
textarea.input{min-height:140px;resize:vertical}
