/* Reset and box-sizing */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1f1765; /* black background */
    color: #ffffff; /* white text */
    line-height: 1.6;
}

/* Containers */
main {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: #000000; /* black background to match page */
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.1);
}

h1 {
    color: white;               /* fill color */
    font-weight: bold;
}

header, footer {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 2rem;
    margin: 0;
    color: #ffffff; /* white header text */
}

footer p {
    font-size: 0.9rem;
    color: #cccccc; /* softer white for footer */
}

/* Sections */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

ul {
    list-style-type: disc;
    padding-left: 40px;
}

ul li {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #ffffff; /* white links */
    text-decoration: underline;
}

a:hover {
    color: #ffeb3b; /* yellow hover for contrast */
}

/* Responsive */
@media (max-width: 768px) {
    main {
        margin: 30px 10px;
        padding: 20px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    ul {
        padding-left: 20px;
    }
}


.staff-hero {
  background: url('TopImages/CommunitySnapNew9.jpg') no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-hero {
  font-size: 2rem;       /* or 64px if you prefer */
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 8px black;
}



/* =========================
   NAVBAR STYLES
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    transition: background-color 0.5s ease;
    background-color: rgba(0, 0, 0, 0.8);  /* transparent at top */
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);  /* visible on scroll */
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo-text {
    color: white;
    font-size: 24px;
    margin-right: 10px;
}

.logo {
    height: 80px;
    transform: scale(2.2);
    padding-left: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
     background: rgba(0, 0, 0, 0.5); /* black, semi-transparent */
    padding: 0.05em 0.3em; /* space around text */
    border-radius: 2em;   /* curved corners */
    display: inline-block; /* shrink wrap around text */
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li:last-child a {
    padding-right: 40px; /* adjust value as needed */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px;
}

.nav-links a:hover {
    color: #007bff;
}
