:root{
  --bg: #f3f1ee;
  --ink: #111;
  --muted: #666;
  --rule: #cfcac3;
  --max: 1100px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.header{
  text-align: center;
  padding: 34px 0 18px;
}
.subtitle a{
  color: inherit;          /* enlève le bleu */
  text-decoration: none;   /* enlève le soulignement */
}

.subtitle a:visited{
  color: inherit;          /* enlève le violet après clic */
}

.subtitle a:hover{
  text-decoration: underline;
}

.header h1{
  margin: 0;
font-size: 48px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header .subtitle{
  margin: 10px 0 0;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.header .subtitle{
  margin-bottom: 22px;
}
/* LA bande horizontale du menu */
.menu-band{
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}

.menu{
  margin: 0;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 110px);
  flex-wrap: wrap;
}

.menu a{
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.menu a:hover{
  border-bottom-color: var(--ink);
}

.menu a[aria-current="page"]{
  border-bottom-color: var(--ink);
}




.quote{
  font-style: italic;
  font-size: 22px;
  max-width: 820px;
  margin: 28px auto 22px;
  text-align: center;
}

.block{
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
}

.block h2{
  margin: 0 0 12px;
  font-size: 22px;
}

.block h3{
  margin: 26px 0 10px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.block ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.small{
  color: var(--muted);
  font-size: 14px;
}

/* Footer links (Samihorn-like) */
.footer-links{
  width: 100%;
  text-align: center;
margin: 8px 0 10px; /* ↓ beaucoup moins d’espace */
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--muted);
}

/* force les liens à ne pas être bleus/violets */
.footer-links a,
.footer-links a:visited{
  color: inherit !important;
  text-decoration: none;
}

.footer-links a:hover{
  text-decoration: underline;
}
.block ul{
  margin-bottom: 2px;   /* ← clé */
}

p.visit{
  font-style: italic;
  font-weight: 600;
  margin: 14px 0 22px;
  padding-left: 12px;
  border-left: 2px solid var(--rule);
}

.block a, .block a:visited{
  color: inherit;
}
.block a:hover{
  text-decoration: underline;
}
main{
  padding-top: 46px;
  padding-bottom: 4px;
}
.block > :last-child{
  margin-bottom: 0 !important;
}
/* UCSB block with left bar */
.ucsb-block{
  margin: 14px 0 22px;
  padding-left: 12px;
  border-left: 2px solid #b9b9b9;
}

.ucsb-block p{
  margin: 0 0 10px;
}

.ucsb-block p:last-child{
  margin-bottom: 0;
}

.ucsb-lead{
  font-style: italic;
  font-weight: 600;
}

.block ul li {
  line-height: 1.35;
  margin-bottom: 0.6em;
}
