/* ==================================
   Civilisation ou Barbarie
   base.css — Global foundation (Updated for Institute Philosophy)
   747civilbarb
================================== */

/* ---- Root & Reset ---- */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ---- Body (GLOBAL) ---- */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #160101;          /* dark reflective tone */
  line-height: 1.65;       /* slightly more breathing space */
  background-color: #f7f7f7; /* soft neutral base */
  background-image: none;  /* optional: add subtle texture if desired */
  background-size: cover;
  background-position: center;
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin: 0 0 0.8em 0;
  line-height: 1.25;
  color: #160101;
}

/* ---- Text ---- */
p {
  margin: 0 0 1.5em 0;
  font-size: 1.1rem;
  color: #2a1a1a;
}

em, i {
  font-style: italic;
}

/* ---- Links ---- */
a {
  color: #880000;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #160101;
  text-decoration: underline;
}

/* ---- Buttons (Global) ---- */
button, .btn {
  font-family: Georgia, serif;
  border: 1px solid #880000;
  background: none;
  color: #880000;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #880000;
  color: #f7f7f7;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(22,1,1,0.4);
}

/* ---- Page wrapper ---- */
.page-content {
  font-family: 'Times New Roman', Times, serif;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  line-height: 1.6;
  color: #333; /* softer tone for body text */
}

/* ---- Main ---- */
main {
  display: block;
}

/* ---- Navbar placeholder ---- */
#navbar-placeholder {
  margin-bottom: 40px;
}

/* ---- Footer ---- */
footer {
  margin-top: 80px;
  padding: 40px 24px 60px;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}

/* ---- Optional subtle background / atmosphere ---- */
/* Uncomment and set your own image if desired */
/*
body {
  background-image: url('/pictures/hero/subtle-texture.png');
}
*/