body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  background-image: url("https://www.transparenttextures.com/patterns/broken-noise.png");
}

.site-title {
  color: #fff;
  text-decoration: none;
}

/*MENU*/
/*Hamburger Part*/
.navbar-image {
  height: 50px;
}

.nav-trigger {
  position: fixed;
  width: 110px;
  height: 100px;
  left: 0px;
  top: 0px;
  z-index: 200;
}

.nav-trigger.open {
  background: transparent;
}

.nav-trigger.close {
  background: transparent;
}

.line {
  display: block;
  position: absolute;
  width: 80px;
  height: 8px;
  background: #fff;
  left: 15px;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, transform 0.24s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.line:nth-child(1) {
  top: 16px;
}

.line:nth-child(2) {
  top: 44px;
}

.line:nth-child(3) {
  top: 72px;
}

.close .line:nth-child(1) {
  transform: translateY(25px) rotate(45deg);
  background: #fff;
}

.close .line:nth-child(2) {
  opacity: 0;
}

.close .line:nth-child(3) {
  transform: translateY(-31px) rotate(-45deg);
  background: #fff;
}

.wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background: url(../images/hero2.jpg) no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 70vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero img {
  height: 230px;
  width: 230px;
}

#heroLogo {
  margin: auto;
  position: absolute;
  top: 25%;
  bottom: 0;
  left: 0;
  right: 0;
}

#heroLogo img {
  height: 100%;
  width: 100%;
}

#heroLogo h1 {
  width: 100%;
  color: white;
  text-align: center;
  font-size: 5vw;
  font-family: "Permanent Marker", cursive;
}

#heroLogo a {
  color: white;
  margin: 0 auto;
}

#social-header {
  text-align: center;
}
#social-header a {
  font-size: 1.25rem;
  color: white;
  padding: 5% 10px;
}

#social {
  padding: 5% 50px;
  font-size: 1.25rem;
  text-align: center;
}

#social a {
  color: white;
  padding-right: 20px;
}

#social h1 {
  font-size: 16px;
}

.hero h1 {
  font-size: 3rem;
  text-align: center;
}

.gallery {
  padding: 70px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about {
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  font-family: "Permanent Marker", cursive;
  font-size: 21px;
}

.about .person {
  display: inline-block;
  padding: 10px;
  text-align: center;
}

.person img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.videos {
  padding: 20px;
  text-align: center;
}
.videos iframe {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 16/9;
  margin: 10px 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
}

.modal:target {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
  gap: 20px;
  margin: 20px auto;
  max-width: 1080px;
  padding: 20px;
}

/* Make it 1 column on tablet and mobile */
@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr; /* 1 column for smaller screens */
  }
}
.instagram-grid blockquote {
  width: 100%;
}

#social h1 {
  font-family: "Permanent Marker", cursive;
  color: #fff;
}

#songList {
  margin-top: 100px;
  color: white;
  text-align: left;
}

#songList div {
  font-size: 20px;
}/*# sourceMappingURL=styles.css.map */