:root{
  --accent:#b30000;
  --accent-dark:#800000;
  --bg:#ffffff;
  --text:#111111;
  --muted:#666666;
  --card:#fafafa;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Body and layout */
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed; /* stays in viewport */
  top: 50%;
  left: 50%;
  width: 500px;     /* adjust size */
  height: 500px;
  max-width: 100%;     /* adjust size */
  max-height: 100%;
  background: url("images/humaniststt-logo-transparent.png") no-repeat center center;
  background-size: contain;
  opacity: 0.15;    /* watermark feel */
  transform: translate(-50%, -50%);
  z-index: -1;      /* stays behind all content */
  pointer-events: none;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:1rem;
  flex: 1;
}

/* Header and Navigation */
header{
  background:#111;
  color:#fff;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.5rem 1rem;
  flex-wrap: wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:0.5rem;
}

.logo{
  height:45px;
  max-width: 100%;
}

.brand-text{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  font-size:1.2rem;
}

/* Nav links */
.nav-links a{
  color:#fff;
  text-decoration:none;
  margin:0 0.5rem;
  font-weight:600;
}

.nav-links a:hover{
  color:var(--accent);
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero section */
.hero{
  padding:3rem 1rem;
  text-align:center;
}

.hero h1{
  color:var(--accent);
  font-size:2.2rem;
  margin-bottom:1rem;
}

/* Hero section */
/* .hero {
  position: relative;
  padding: 3rem 1rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("humaniststt-logo-transparent.png") no-repeat center center;
  background-size: contain;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero h1 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero p,
.hero blockquote,
.hero a {
  position: relative;
  z-index: 1;
} */

.cta{
  background:var(--accent);
  color:#fff;
  padding:0.6rem 1.2rem;
  border-radius:5px;
  text-decoration:none;
  font-weight:bold;
}

.cta:hover{
  background:var(--accent-dark);
}

/* Sections and cards */
section{
  margin:2rem 0;
}

section h2{
  border-bottom:2px solid var(--accent);
  padding-bottom:0.3rem;
  margin-bottom:1rem;
}

.card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:6px;
  padding:1rem;
  box-shadow:0 2px 5px rgba(0,0,0,0.05);
  width: 100%;
  box-sizing: border-box;
}

.muted{
  color:var(--muted);
}

ul{
  list-style:disc;
  padding-left:1.5rem;
}

ul li{
  margin-bottom:0.5rem;
}

/* Footer */
footer{
  margin-top:2rem;
  padding:1rem;
  background:#111;
  text-align:center;
  color:#fff;
  flex-shrink: 0;
}

.footer-logo{
  height:30px;
  display:block;
  margin:0 auto 0.5rem auto;
}

.small{
  font-size:0.85rem;
}

.exec-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center; /* center content in each grid cell */
}

.exec-list li {
  display: flex;
  flex-direction: column; /* name above photo */
  align-items: center;
  text-align: center;
}

.exec-name {
  margin-bottom: 10px;
  font-weight: bold;
}

.exec-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container, crops excess */
}

.photo-wrapper {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%; /* circular images */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Responsive adjustments */

/* Tablets and below (≤768px) */
@media (max-width: 768px) {
  body::before {
    width: 400px;
    height: 400px;
  }

  .nav-links {
    display: none; /* hide links by default on mobile */
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #111;
    flex-direction: column;
    padding: 1rem;
    border-radius: 5px;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .nav-links a {
    margin: 0.5rem 0;
  }

  .nav-links.active {
    display: flex; /* show menu when active */
  }

  .hamburger {
    display: block; /* show hamburger on mobile */
  }

  .hero {
    padding:2.5rem 1rem;
  }

  section {
    margin:1.5rem 0;
  }
}

/* Phones (≤480px) */
@media (max-width: 480px) {
  body::before {
    width: 250px;
    height: 250px;
  }

  body {
    font-size:14px;
  }

  .hero h1 {
    font-size:1.8rem;
  }

  .cta {
    padding:0.5rem 1rem;
  }

  .container {
    padding:0.5rem;
  }

  .hero {
    padding:2rem 1rem;
  }

  section h2 {
    font-size:1.1rem;
  }

  .photo-wrapper {
    width: 100px;
    height: 100px;
  }
}
