<style>* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Inter', sans-serif;
    background-color: #141a21;
    color: #fff;
}

.banner {
    position: relative;
    height: 300px;
    background: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.banner h1 {
    font-family: 'Audiowide', sans-serif;
    /* font-family: "Sixtyfour Convergence", sans-serif;*/
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

nav {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 2;
}

socnav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}


nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Audiowide', sans-serif;
}

socnav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Audiowide', sans-serif;
}



nav a:hover {
    color: #00bcd4;
}

#particles-js {
    background-color: #062c5c;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.banner p {
    font-size: 1.25rem;
    opacity: 0.85;
}

.intro-text {
    max-width: 800px;
    margin: 2rem auto 1rem;
    padding: 0 1rem;
    color: #222;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-text h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #444;
}

.video-slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-slideshow video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-slideshow video.active {
    opacity: 1;
    z-index: 1;
}

.video-slideshow button {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    z-index: 2;
}

.video-slideshow #prev {
    left: 10px;
}

.video-slideshow #next {
    right: 10px;
}

section.placeholder {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

section.placeholder h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111;
    font-family: 'Audiowide', sans-serif;
}

section.placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
    font-family: 'Audiowide', sans-serif;
}


section.placeholder p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.people-grid-section {
    background: #fff;
    padding: 2rem;
    color: #222;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.person {
    text-align: center;
}

.person img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.person h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.person p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.image-grid-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: transparent;
    color: #fff;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.image-stack {
    max-width: 400px;
    margin: 3rem auto;
    padding: 1rem;
    text-align: center;
    background: #fff;
    /* white background */
    border-radius: 12px;
    /* optional: rounded corners */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
    color: #000;
    /* ensure text stays visible */
    font-family: 'Audiowide', sans-serif;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-image {
    margin-bottom: 1.5rem;
}

.bottom-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; */
}

.bottom-row img {
    max-width: 30%;
    /* This makes each image take up less width */
    height: auto;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 70%; /* optional: keeps it responsive */
}

.banner2 {
  position: relative;
  width: 100%;
  height: 300px; /* adjust as needed */
  overflow: hidden;
}

.banner2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */

  color: white;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3); /* semi-transparent overlay */
}

.banner2-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.banner2-overlay nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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


</style>