:root {
    --font: "DM Serif Text", serif;

    --navbar: #082c04;
    --navbar-shadow: #f3b23b;
    --nav-link: #80ff64;

    --title: #80ff64;
    --title-shadow: #316328;
    
    --body: #ece5f2;

    --employ-bg: #202020;
    --employ-text: #9b9b9b;

    --text: #000;
    --footer: #000;
    --footer-text: #fff;
    --link: #b6ffb2;
    --link-hover: #f1fff0;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

/* Links */
a {
    color: var(--link);
}

/* Footer */
footer {
    padding: 1rem 2rem;
    background-color: var(--footer);
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid var(--navbar-shadow);
}

footer p {
    color: var(--footer-text);
    text-align: center;
}

/* CUSTOM ATTRIBUTES */

#pop:hover {
  transform: scale(1.1);
}

#pop-left:hover {
  transform: scale(1.1) rotate(5deg);
}

#pop-right:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* Top Space for Better Viewing */
.top {
  background-color: #ece5f2;
}

/* Navbar */
.underline-spaced {
  text-underline-offset: 8px;
}

#link:hover {
  transform: scale(1.1);
}

.nav-sep {
  color: var(--navbar-shadow);
  font-size: 1.2rem;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--navbar);
  color: var(--nav-link);
  z-index: 1000;
  padding: 1rem 2rem;
  text-shadow: -1px 1px var(--title-shadow);
  box-shadow: 0px 4px var(--navbar-shadow);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--nav-link);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--link-hover);
}

/* Site Title */
.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--title);
  text-shadow: -2px 2px var(--title-shadow);
}

.site-title a {
  color: var(--title);
  text-decoration: none;
}

.site-title:hover {
  transform: scale(1.1);
}

/* Rules */
.rules {
  list-style: none;
  display: list-item;
  padding-left: 40px;
  gap: 5rem;
}

.rules li {
  list-style: disc;
  margin-bottom: 15px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--text);
}

.content-rules {
  padding: 2rem;
  padding-left: 15rem;
  padding-right: 15rem;
  background-color: var(--body);
}

/* Masthead */
.masthead {
  margin-top: 59px;
  height: 100vh;
  overflow: hidden;
  border-bottom: 4px solid var(--navbar-shadow);
}

.masthead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content section */
.content {
  padding: 2rem;
  padding-left: 15rem;
  padding-right: 15rem;
  background-color: var(--body);
}

.text-content {
  flex: 1;
}

.image-text {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.image-text img {
  width: 400px;
  max-width: 100%;
  height: auto;
  box-shadow: 6px 6px var(--navbar-shadow);
}

/* Employment Section */
.employ-text {
  color: var(--employ-text);
  background-color: var(--employ-bg);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 6px 6px var(--navbar-shadow);
}

.employ-text h2 {
  color: #fff;
}

.employ-text img {
  width: 400px;
  max-width: 100%;
  height: auto;
  box-shadow: 6px 6px var(--navbar-shadow);
}

/* Staff List */
#staff-list {
  padding: 10px 0;
}

.staff-card {
  display: flex;
  flex-wrap: wrap;
  background: var(--employ-bg);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 5px 5px var(--navbar-shadow);
}

.staff-card img {
  width: 190px;
  max-width: 100%;
  object-fit: cover;
}

.staff-info {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.staff-info h3 {
  color: var(--footer-text);
  margin: 0 0 10px 0; /* Tighten up spacing */
  font-size: 2.5rem;
  text-align: left;
}

.staff-info p {
  color: var(--employ-text);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Discord Badge */
.discord {
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.discord img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.discord img:hover {
  transform: scale(1.1);
}

/* Media Stuff */
@media (max-width: 768px) {
  .image-text {
    flex-direction: column;
    text-align: center;
  }
}
