/* ====================
   ADHD Trove Brand Styles
   ==================== */

:root{
  --navy:#1E355D;
  --coral:#F26A5A;
  --bg:#FDF7F1;
  --ink:#1E355D;
  --muted:#6A768B;
  --card:#FFFFFF;
  --radius:12px;
  --shadow:0 10px 25px rgba(30,53,93,.08);
}

/* Base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  margin:0;
  padding:20px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{
  max-width:900px;
  margin:0 auto;
}

/* Headings / text */
h1{font-size:clamp(28px,3.6vw,42px);line-height:1.15;margin:10px 0 6px}
.lead{color:var(--navy);opacity:.9;margin:0 0 16px}
.label{font-weight:700;color:var(--navy)}
.hint{font-size:13px;color:var(--muted);margin-top:4px}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  color:var(--navy);
  background:#ECEDF3;
  transition:filter .15s ease;
}
.btn:hover{filter:brightness(.97)}

.btn-primary{
  background:var(--coral);
  color:#fff;
  box-shadow:0 8px 18px rgba(242,106,90,.18);
}
.btn-primary:hover{filter:brightness(.96)}

/* Layout helpers */
.row{display:grid;gap:14px}
@media (min-width:720px){.row-2{grid-template-columns:1fr 1fr}}
.mt-1{margin-top:10px}
.mt-2{margin-top:20px}
.actions{display:flex;gap:12px;align-items:center;margin-top:12px}
.note{font-size:13px;color:var(--muted)}

/* Cards / groups */
.group{
  margin-top:18px;
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Inputs */
input[type="text"],input[type="email"],textarea{
  background:#fff;
  border:2px solid #E6E9F2;
  border-radius:12px;
  padding:12px 14px;
  font-size:16px;
  width:100%;
  outline:none;
  transition:border-color .15s, box-shadow .15s;
}
textarea{min-height:120px;resize:vertical}
input:focus,textarea:focus{
  border-color:var(--coral);
  box-shadow:0 0 0 4px rgba(242,106,90,.14);
}

/* Checkbox grids */
.checks{
  display:grid;
  gap:12px;              /* space between items */
}

/* 2-column at desktop, stacks on small screens */
.checks-2{grid-template-columns:1fr 1fr}
@media (max-width:720px){.checks-2{grid-template-columns:1fr}}

/* Each checkbox row: input + label text aligned tightly */
.check{
  display:grid;
  grid-template-columns:auto 1fr;  /* checkbox then text */
  align-items:center;
  column-gap:10px;
  font-size:16px;
}
.check input{
  margin:0;                 /* no browser default offset */
  transform:scale(1.1);     /* slight size bump */
}

/* Notices */
.notice{
  margin-top:16px;
  padding:12px;
  border-radius:12px;
  font-weight:600;
}
.notice.success{background:#E8FFF0;color:#0B5D37}
.notice.error{background:#FFE9E9;color:#8B1D1D}

/* Navbar (if used) */
.navbar .title{color:var(--navy);font-weight:600}