/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #0d1b2a, #1b263b);
  color: #f0f0f0;
  line-height: 1.6;
}

header {
  background-color: #1e3a5f;
  padding: 15px 30px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #cce6ff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #3c5a80;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

main h1 {
  text-align: center;
  margin-bottom: 15px;
  color: #a8dadc;
  font-size: 3rem;
}

.subheadline {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: #deeaf6;
  margin-bottom: 35px;
  font-style: italic;
}

.staff-category {
  margin-bottom: 40px;
}

.staff-category h2 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #89c2d9;
  border-bottom: 2px solid #468faf;
  padding-bottom: 5px;
}

.member {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 15px;
}

.member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #468faf;
}

.member strong {
  color: #ffffff;
  font-size: 1.1em;
}

.member p {
  color: #bbbbbb;
  font-size: 0.9em;
}

footer {
  background-color: #0d1b2a;
  color: #aaaaaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 50px;
}

/* Invite Button Styling from Uiverse.io by MrD4rio */
button {
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(to bottom, #4f4dd9 0%, #2b60aa 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  cursor: pointer;
  margin: 20px auto;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

button span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

button svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

button:hover svg {
  transform: rotate(360deg);
}
/* credits to uiverse.io/profile/eirikvold */
