@import url('https://fonts.googleapis.com/css2?family=Gugi&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* misplaced color scheme */
/* foreground */

h1 {
  font-size: 2.0rem;
}

h2 {
  font-size: 1.3rem;
}

.fg-mi-black {
	color: #000;
}

.fg-mi-black h1, h2, h3, h4 {
	font-family: 'Gugi', cursive;
}

/* background */

.bg-mi-grad {
	background: linear-gradient(to bottom, #b00 0%, #100 100%);
}

.bg-mi-red {
	background: linear-gradient(to top right, #b00 0%, #600 100%);
}

body {
	background: linear-gradient(to bottom, #000 0%, #111 100%);
	color: #fee;
  font-family: "Noto Sans", sans-serif;
}

a {
  color: darkorange;
}

a:hover {
  color: #aaa;
}

#menu-button {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #b00;
  color: #000;
  padding: 10px;
  border: solid black 2px;
}

nav {
  visibility: hidden;
  padding: 15px 0px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #b00 0%, #100 100%);
  color: #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 15px;
}

nav>div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap 10px;
}

nav img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

nav a {
  color: #eee;
  text-decoration: none;
}

nav a:hover {
  color: #aaa;
}

header {
  text-align: center;
  background: linear-gradient(to bottom, #b00 0%, #600 100%);
  color: #000;
  font-family: 'Gugi', system-ui;
}

.header-logo {
  margin: 10px auto;
  max-width: 96%;
  height: auto;
}

.fa-facebook:hover {
	color: #3b5998;
}

.fa-instagram:hover {
  color: #e1306c;
}

.fa-threads:hover {
  color: #fff;
}

.fa-discord:hover {
  color: #5865f2
}

.fa-youtube:hover {
  color: #ff0000;
}

.fa-bandcamp:hover {
  color: #629aa9;
}

.fa-spotify:hover {
  color: #1ed760;
}

.fa-envelope:hover {
  color: #aaa;
}

article {
  background: black;
  border: solid #600 1px;
  padding: 0px 5px;
  margin-bottom: 5px;
}

article > img {
  max-width: 100%;
  height: auto;
  margin: 3px auto;
  border: solid white 1px;
}

article span {
  color: #b00;
}

.media-links {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.media-links > a {
  color: #600;
  text-decoration: none;
}

#socials, #music, #upcoming > article {
  text-align: center;
}

footer {
  text-align: center;
}

/* desktop styles */
@media only screen and (min-width:768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.5rem;
  }


  button#menu-button {
    display: none;
  }

  body {
    display: grid;
    grid-template-columns: 5% 10% repeat(3, 1fr) 10% 5%;
    column-gap: 15px;
  }

  nav {
    visibility: visible;
    position: static;
    grid-row: 1;
    grid-column: 2 / 7;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 20px;
    background: black;
    color: #b00;
  }

  nav>div {
    flex-grow: 1;
    column-gap: 15px;
    margin: auto 20px;
  }

  nav>div.sections {
    justify-content: flex-start;
  }

  #social-links {
    justify-content: flex-end;
    column-gap: 15px;
  }

  nav a, #social-links a {
    color: #b00;
  }

  #nav-button {
    display: none;
  }

  header {
    border-radius: 2px;
  }

  header#main-header {
    grid-row: 2;
    grid-column: 3 / 6;
  }

  section#socials {
    display: none;
  }

  section#latest {
    grid-row: 3 / 5;
    grid-column: 2 / 5;
  }

  section#who {
    grid-row: 5 / 6;
    grid-column: 2 / 5;
  }

  section#music {
    grid-row: 3;
    grid-column: 5 / 7;
  }

  section#upcoming {
    grid-row: 4 / 6;
    grid-column: 5 / 7;
  }

  article {
    overflow: auto;
    padding: 0px 20px;
    text-align: justify;
  }

  article > img {
    float: left;
    max-width: 55%;
    padding: 2px;
    margin: 20px 20px 20px 0px;
  }

  article > img.right {
    float: right;
    margin: 20px 0px 20px 20px;
  }

  footer {
    grid-row: 7;
    grid-column: 1 / 8;
  }
