/* We use UML btw. - 90s Retro Theme */

@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  background-image: url("assets/background.png");
  background-repeat: repeat;
  background-attachment: fixed;
  color: #cccccc;
  font-size: 1.1em;
  font-family: Georgia, Times, serif;
  line-height: 1.7;
}

a,
a:link,
a:visited {
  color: #33ff00;
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  text-decoration: underline;
}

/* Header */
#header {
  padding: 40px 4% 20px;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.torch-left,
.torch-right {
  width: 140px;
  height: auto;
}

.masthead {
  text-align: center;
}

.site-title {
  color: #33ff00;
  font-family: "VT323", Courier, serif;
  font-size: 5em;
  font-weight: 800;
  letter-spacing: 4px;
}

.site-description {
  color: #999999;
  font-family: Courier, serif;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* Content */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 4%;
}

.section-box {
  background: #000000;
  margin-bottom: 30px;
  padding: 40px;
  border: 6px double #33ff00;
}

.section-box h2 {
  color: #ffffff;
  font-family: Courier, serif;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 8px;
}

.section-box h3 {
  color: #ffffff;
  font-family: Courier, serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 12px;
}

.divider-small {
  display: inline-block;
  background: #33ff00;
  height: 3px;
  width: 80px;
  margin-bottom: 20px;
}

/* Welcome */
.welcome-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.welcome-gif {
  max-width: 200px;
  border: 3px solid #33ff00;
}

.welcome-content p {
  flex: 1;
  min-width: 250px;
  font-size: 1.1em;
  line-height: 1.8;
}

/* Members */
.member-list {
  list-style: none;
  padding: 0;
}

.member-list li {
  padding: 10px 16px;
  margin: 6px 0;
  border: 2px dotted #666666;
  font-family: Courier, serif;
  font-size: 1.1em;
  transition: all 0.2s;
}

.member-list li:hover {
  border-color: #33ff00;
  color: #33ff00;
  background: rgba(51, 255, 0, 0.05);
}

.role-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border: 2px solid #33ff00;
  background: rgba(51, 255, 0, 0.1);
  color: #33ff00;
  font-family: "VT323", Courier, serif;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
}

/* Assignments */
.assignment-card {
  background: rgba(51, 255, 0, 0.03);
  border: 2px solid #33ff00;
  padding: 24px;
  margin-bottom: 20px;
}

.assignment-card:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.retro-button {
  display: inline-block;
  background-color: #cccccc;
  color: #000000 !important;
  font-family: Courier, serif;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 3px solid #666666;
  box-shadow: inset 3px 3px 0px #ffffff;
  transition: all 0.15s;
}

.retro-button:hover {
  background-color: #33ff00;
  color: #ffffff !important;
  text-decoration: none;
  cursor: pointer;
}

/* Genie */
.genie-section {
  text-align: center;
  padding: 40px 4%;
}

.genie-img {
  max-width: 200px;
}

.genie-meta {
  font-family: Courier, serif;
  font-size: 0.9em;
  font-weight: bold;
  color: cyan;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 2px dotted #333333;
  padding: 30px 4%;
  text-align: center;
}

.footer-content p {
  font-family: Courier, serif;
  font-size: 0.9em;
  color: #666666;
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 700px) {
  .header-content {
    gap: 8px;
  }

  .site-title {
    font-size: 2em;
    text-wrap: nowrap;
  }

  .torch-left,
  .torch-right {
    width: 90px;
    flex-shrink: 1;
  }

  .torch-left {
    margin-right: -12px;
  }

  .torch-right {
    margin-left: -12px;
  }

  .section-box {
    padding: 24px;
  }

  .welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .welcome-gif {
    max-width: 150px;
  }

  .button-row {
    flex-direction: column;
  }

  .retro-button {
    text-align: center;
  }
}
