/* Dr. R Adams Cowley Shock Trauma - Site Styles */
:root {
  --navy: #1a2744;
  --gold: #c9a84c;
  --light-gold: #f0e0b0;
  --text: #222;
  --muted: #555;
  --bg: #fff;
  --light-bg: #f5f5f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
header {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header .logo img { height: 48px; display: block; }
nav { display: flex; align-items: center; gap: 1.5rem; }
nav a { color: #fff; font-family: Arial, sans-serif; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
nav a:hover { color: var(--gold); text-decoration: none; }
nav a.contact-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: bold;
}
nav a.contact-btn:hover { background: #e0b850; }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.hero h1 { font-size: 2.8rem; font-weight: bold; line-height: 1.2; }
.hero .subtitle { font-size: 1.3rem; color: var(--gold); margin-top: 0.5rem; font-style: italic; }
.hero .dates { font-size: 0.95rem; color: #ccc; margin-top: 0.5rem; }
.hero p { max-width: 700px; margin-top: 1rem; font-size: 1rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; }
.page-hero p { max-width: 800px; margin: 1rem auto 0; color: #ccc; font-size: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 3.5rem 0; }
section.alt { background: var(--light-bg); }

/* ── TYPOGRAPHY ── */
h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
h5 { font-size: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gold-text { color: var(--gold); }
.lead { font-size: 1.1rem; color: var(--muted); }

/* ── QUOTE ── */
.quote-block {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.quote-block blockquote {
  font-size: 1.4rem;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}
.quote-block cite { display: block; margin-top: 1rem; color: var(--gold); font-size: 0.95rem; font-style: normal; }

/* ── IMAGES ── */
.img-full { width: 100%; display: block; }
.img-responsive { width: 100%; height: auto; border-radius: 4px; display: block; }
.img-caption { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-top: 0.4rem; }

.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0; }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0; }
.card {
  background: #fff;
  border: 1px solid #e0e0d8;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 1rem; }
.card h4 { color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat { text-align: center; flex: 1; min-width: 120px; }
.stat .number { font-size: 2.5rem; font-weight: bold; color: var(--gold); display: block; }
.stat .label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── HONORS TIMELINE ── */
.honor-item { border-left: 3px solid var(--gold); padding: 0 0 1.5rem 1.5rem; margin-left: 1rem; position: relative; }
.honor-item::before { content: ''; position: absolute; left: -8px; top: 4px; width: 13px; height: 13px; background: var(--gold); border-radius: 50%; }
.honor-year { font-size: 0.8rem; color: var(--gold); font-weight: bold; letter-spacing: 0.1em; margin-bottom: 0.25rem; font-family: Arial, sans-serif; }
.honor-item h4 { margin-bottom: 0.3rem; }

/* ── WORKS ARTICLES ── */
.article-item { border-bottom: 1px solid #e0e0d8; padding: 1rem 0; }
.article-item:last-child { border-bottom: none; }
.article-item a { font-weight: bold; color: var(--navy); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: #fff; padding: 2rem; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: bold; margin-bottom: 0.3rem; color: var(--navy); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group textarea { height: 120px; resize: vertical; }
.btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.btn:hover { background: #e0b850; }
.mailto-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #ccc;
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
footer h5 { color: #fff; margin-bottom: 0.75rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.35rem; }
footer ul li a { color: #aaa; font-size: 0.9rem; }
footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #888;
}
.footer-img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 1rem; opacity: 0.7; border-radius: 4px; }

/* ── BACK TO TOP ── */
.back-to-top { text-align: center; padding: 1rem; background: var(--light-bg); }
.back-to-top a { font-size: 0.85rem; color: var(--muted); }

/* ── INLINE LISTS ── */
ul.content-list { padding-left: 1.5rem; margin: 0.75rem 0 1rem; }
ul.content-list li { margin-bottom: 0.4rem; }

/* ── VIDEO EMBED ── */
.video-embed { aspect-ratio: 16/9; width: 100%; }
.video-embed iframe { width: 100%; height: 100%; border: none; border-radius: 4px; }
.video-thumb { position: relative; display: block; }
.video-thumb img { width: 100%; border-radius: 4px; }
.video-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .two-col, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .img-grid, .img-grid-3 { grid-template-columns: 1fr; }
  nav { gap: 0.8rem; }
  nav a { font-size: 0.78rem; }
  .hero h1 { font-size: 1.8rem; }
  .two-col.reverse { direction: ltr; }
}
