/* style.css */

/*──────────────────────────────────────────────────────────────────────────────
  1) Base typography & colors
  2) Navigation styling (always horizontal)
  3) Crest + title styling
  4) Container classes for content
  5) Motto styling
  6) OpenAI chat widget positioning
──────────────────────────────────────────────────────────────────────────────*/

/* 1) Basic reset + typography */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #142559;   /* deep blue from crest */
  color: #E9B83B;              /* gold from crest */
  font-family: Verdana, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a, a:visited {
  color: #E9B83B;
  text-decoration: none;
}

a:hover, a:active {
  color: #F3D97B; /* lighter gold */
  text-decoration: underline;
}

a:focus {
  outline: 2px dashed #F3D97B;
  outline-offset: 3px;
}

/* 2) Navigation styling (always horizontal) */
header {
  width: 100%;
  background-color: #142559;
  padding: 1rem 0 0.5rem;
}

nav {
  width: 100%;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;        /* Always horizontal */
  justify-content: center;    /* Center the links */
}

nav li {
  margin: 0 1rem;             /* Horizontal spacing between items */
}

nav li a {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: block;
}

/* 3) Crest + title styling */
.crest-container {
  margin: 1rem auto 0;
  max-width: 300px;
  width: 80%;
}

.crest-container img {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0.5rem 0 1rem;
  font-size: 2rem;
  letter-spacing: 1px;
  text-align: center;
}

@media (min-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
}

/* 4) Container classes for content */
.summary, .history, .faq {
  max-width: 800px;
  width: 90%;
  margin: 1rem auto 2rem;
  background-color: transparent;
  text-align: left;
  font-size: 0.95rem;
}

.summary p,
.history p,
.faq p {
  margin-bottom: 1rem;
}

.history blockquote {
  margin: 1rem 1rem;
  font-style: italic;
  border-left: 3px solid #E9B83B;
  padding-left: 1rem;
}

.faq h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

/* 5) Motto styling (spanning full width) */
.motto {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  line-height: 1.3;
  color: #E9B83B;
}

.motto p + p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* 6) OpenAI chat widget positioning */
#openai-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 320px;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
