/* ===== GLOBAL ===== */
:root{
  --brand: #2f4f4f;
  --brand-dark: #1f2f2f;
  --bg: #f4f4f4;
  --text: #333;
  --card: #ffffff;
  --muted: #666;
  --border: #e6e6e6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

/* ===== HERO HEADER ===== */
.hero {
  background: var(--brand);
  color: #fff;
  padding: 34px 18px;
}

.hero-inner{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.hero-logo{
  height: 120px; /* make this bigger/smaller */
  width: auto;
}

.hero-text h1{
  margin: 0;
  font-size: 2.2rem;
  color: #fff;
}

.hero-text p{
  margin: 6px 0 0;
  font-size: 1.05rem;
  color: #fff;
}

/* ===== NAV ===== */
.site-nav {
  background: var(--brand-dark);
  padding: 12px 14px;
  text-align: center;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-nav a.active{
  background: rgba(255,255,255,0.14);
  text-decoration: none;
}

/* ===== LAYOUT ===== */
main{
  padding: 0 12px;
}

section {
  background: var(--card);
  max-width: 950px;
  margin: 26px auto;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

h2 { margin-top: 0; color: var(--brand); }
h3 { color: var(--brand); }

/* ===== CARDS ===== */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 18px 0 8px;
}

.card{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.card h3{
  margin-top: 0;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 18px 14px 28px;
  font-size: 0.95em;
  color: var(--muted);
}

/* ===== BUTTONS & INPUTS ===== */
button {
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  opacity: 0.92;
}

input[type="password"] {
  padding: 10px 12px;
  width: min(320px, 80vw);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.button-link{
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 10px 14px;
  border-radius: 10px;
}

.button-link:hover{ opacity: 0.92; }

/* ===== NOTES ===== */
.note{
  border-left: 4px solid var(--brand);
  padding: 10px 12px;
  background: #f8fbfb;
  border-radius: 10px;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--brand);
}

.faq-question.active::after {
  content: "–";
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

figure{ margin: 0; }
figcaption{
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== DOCUMENTS ===== */
.doc-gate{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
}

.doc-list{
  margin: 0;
  padding-left: 18px;
}
