/* Simple responsive styles for Clinique Les Iris */
:root{
  --brand:#0b6ea8;
  --muted:#6b7280;
  --bg:#f7fbfd;
  --card:#ffffff;
  --radius:12px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:#0f172a;line-height:1.5}
.container{max-width:1100px;margin:0 auto;padding:20px}
.site-header{background:linear-gradient(90deg,var(--brand),#075a86);color:#fff;padding:18px 0;border-bottom-left-radius:12px;border-bottom-right-radius:12px}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.brand{display:flex;gap:14px;align-items:center}
.logo{width:64px;height:64px}
.brand h1{margin:0;font-size:20px;letter-spacing:0.3px}
.tagline{margin:0;font-size:13px;opacity:0.9}
.contact-nav a{color:rgba(255,255,255,0.95);display:inline-block;margin-left:12px;text-decoration:none;font-weight:600}
.hero{background:transparent;padding:40px 20px;text-align:center;border-radius:10px}
.hero h2{font-size:28px;margin:0 0 10px}
.hero p{color:var(--muted);max-width:800px;margin:0 auto 16px}
.btn{display:inline-block;padding:12px 18px;border-radius:999px;background:var(--brand);color:#fff;text-decoration:none;font-weight:700}
.specialties{padding:18px 0}
.spec-list{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:8px 0}
.spec-list li{background:var(--card);padding:12px 16px;border-radius:10px;box-shadow:0 6px 18px rgba(11,110,168,0.08);font-weight:600}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-top:18px}
.card{background:var(--card);padding:16px;border-radius:var(--radius);box-shadow:0 6px 20px rgba(2,6,23,0.06)}
.contact-section{margin-top:22px;background:var(--card);padding:18px;border-radius:12px;box-shadow:0 8px 24px rgba(2,6,23,0.06)}
.contact-form{display:grid;gap:10px}
.contact-form label{display:block;font-size:14px;color:var(--muted)}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef7;background:#fbfeff}
.site-footer{padding:18px 0;text-align:center;color:var(--muted);margin-top:30px}
@media(min-width:900px){
  .hero{display:flex;flex-direction:column;align-items:center}
  .hero h2{font-size:32px}
}
