@import url("https://fonts.googleapis.com/css2?family=Scope+One&family=Unlock&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Itim&family=Scope+One&family=Unlock&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Itim&family=Scope+One&family=Unlock&family=Zen+Dots&display=swap");

:root {
  --bk: #c5c0a0;
  --second: #1e1e17;
  --shadow: 0 4px 10px rgba(46, 43, 43, 0.65);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #c4c0a0;
}
/* Nav bar */
.containerNav {
  /* nav size */
  height: 125px;
}
.nav {
  /* makes sticky nav */
  position: fixed;
  background-color: #9c9775;
  /* positions nav */
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  height: 125px;
  /* ensures the nav doesn't move */
  z-index: 10;
}
.nav .containerNav {
  /* creates flexbox */
  display: flex;
  /* containerNav will be centered on the horizontal axis */
  justify-content: center;
  /* containerNav will be centered on the verticle axis */
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav ul {
  display: flex;
  /* gets rid of bullets */
  list-style-type: none;
}

.nav li {
  margin: 0 8px;
  font-size: 27px;
  padding-left: 18px;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 8px 10px;
  transition: all 0.3s ease-in-out;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav.active {
  background-color: white;
  box-shadow: var(--shadow);
}

.nav.active a {
  color: #7a5c43;
}

.nav.active .containerNav {
  padding: 10px 0;
}

.nav a.current,
.nav a:hover {
  color: wheat;
}
.title {
  font-weight: bold;
  font-size: 60px;
}
.icons {
  display: flex;
  gap: 20px;
  /* positions icons */
  padding-left: 90px;
}
/* section 1 */
.section1 {
  position: relative;
  display: flex;
  /* centers section1 */
  justify-content: center;
  align-items: center;
}
.section1 img {
  width: 100%;
  height: 1000px;
  /* makes sure img covers whole space */
  object-fit: cover;
}
/* box */
.box {
  /* creates css grid */
  display: grid;
  background-color: #c9c297;
  /* .box container has two equal columns  */
  grid-template-columns: 1fr 1fr;
  position: absolute;
  padding: 20px;
  /* how big I want the box to be */
  width: 990px;
  height: 62%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.boxText {
  text-align: center;
  /* makes text farther down and centered in box */
  transform: translateY(27%);
  font-size: 38px;
}
.box h1,
.box button {
  margin-right: 40px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 15px;
}

.box img {
  width: 420px;
  height: auto;
  border-radius: 6px;
  margin-top: 30px;
}
/* Section 2 & 3 image grid layout*/
.grid-container {
  display: grid;
  /* creates 3 columns in equal size */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.card {
  text-align: center;
}
.card img {
  width: 100%;
  height: 640px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.card a {
  font-size: 20px;
  color: var(--second);
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
  text-decoration: none;
}
/* Section 2 text */
.logo h2 {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 5rem;
  text-align: center;
  color: white;
  padding-top: 100px;
}
.logo h3,
.section3 h3 {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 5rem;
  text-align: center;
}
.section3 {
  text-align: center;
}

.logo p {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 25px;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.icon {
  /* aligns the text and icon horizontally */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section3 h3 {
  padding: 30px 0;
}
/* Button */
.btn {
  margin-top: 20px;
  padding: 15px 30px;
  color: var(--second);
  background-color: var(--bk);
  border: 6px solid var(--second);
  border-radius: 6px;
  font-size: 22px;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}
.button-container {
  display: flex;
  /* centers btn */
  justify-content: center;
  margin-top: 20px;
}
.btn:hover {
  background-color: var(--second);
  color: var(--bk);
}

/* Newsletter section 4 */
.newsletterContainer {
  padding: 40px;
  max-width: 670px;
  margin: 0 auto;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* newsletter heading */
.newsletterContainer h2 {
  font-size: 55px;
  width: auto;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--second);
  margin-bottom: 20px;
  text-align: center;
}

.newsletterContainer label {
  font-size: 22px;
  color: var(--second);
  display: block;
  margin-top: 10px;
}

/* Input styles */
.newsletterContainer input[type="text"],
.newsletterContainer input[type="email"],
.newsletterContainer select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 2px solid var(--second);
  font-size: 22px;
  font-family: "Scope One", serif;
  color: #868567;
  background-color: #bdbb91;
}
/* Paragraph for terms and policy */
.newsletterContainer p {
  font-size: 16px;
  color: var(--second);
  line-height: 1.4;
}
.newsletterContainer a {
  color: var(--second);
  text-decoration: underline;
}

/* Footer */
.newsletterContainer footer {
  margin-top: 30px;
  font-size: 20px;
  color: var(--second);
  text-align: center;
}

/* titles style */
.containerA h2,
.containerB h2,
.news-title,
.containerE h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--second);
  text-align: center;
  padding-top: 155px;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 20px;
}

.containerC h2,
.containerT h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--second);
  text-align: center;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 10px;
}

/* header grid */
.accordion-header {
  display: grid;
  /* spaces out date, venue & place of each concert going horizontally */
  grid-template-columns: 1fr 2fr 2fr;
  padding: 10px 0;
  border-bottom: 3px solid var(--second);
}
/* concert details text */
.accordion-header p {
  font-weight: bold;
  text-align: center;
  color: var(--second);
  font-size: 2rem;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 8px;
  padding-top: 5px;
  margin: 10px;
}

/* paragraph styling */
.accordion-content {
  padding: 10px 0;
  font-size: 20px;
  margin: 12px;
}
.accordion-content p {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.5;
}
/* Gallery styling */
.gallery {
  display: grid;
  /* three columns for images each 1fr big*/
  grid-template-columns: repeat(3, 1fr);
  /* spacing */
  gap: 30px;
  padding: 40px;
  justify-items: center;
}

.gallery img:hover {
  /* img expands slightly when hovered over */
  transform: scale(1.05);
}
.gallery img {
  width: 100%;
  height: 470px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}
/* Overlay styling */
.overlay {
  /* doesn't display on screen until img is clicked on */
  display: none;
  /* position is stuck to middle of screen */
  position: fixed;
  top: 0;
  left: 0;
  /* takes up whole window */
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  /* image is in center of screen */
  justify-content: center;
  align-items: center;
  /* this item appears above everything else */
  z-index: 100;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid white;
  border-radius: 10px;
}

/* Footer */
.footer {
  background-color: var(--second);
  color: #aaa;
  padding: 20px;
  text-align: center;
  font-family: "Zen Dots", sans-serif;
  text-align: center;
  font-weight: normal;
}

.footer-content p {
  margin-bottom: 10px;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: #aaa;
  text-decoration: none;
}

.social-links a:hover {
  color: #fff;
}

/* Merch page */
.product-card {
  display: flex;
  /* stacks all items in .product-card vertically */
  flex-direction: column;
  align-items: center;
  background-color: rgb(199, 181, 148);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 15px;
  width: 100%;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  height: auto;
  /* fits img to space */
  object-fit: cover;
  max-height: 680px;
}

.product-card p {
  margin: 5px 0;
  font-size: 22px;
  color: var(--second);
  font-family: "Zen Dots", sans-serif;
  text-align: center;
  font-weight: bold;
}
/* styling of price */
.product-card p:last-child {
  font-size: 19px;
  font-weight: 100;
}
.paragraphs p,
.paragraphs2 p {
  font-family: "Zen Dots", sans-serif;
  font-size: 18px;
  margin: 10px 30px;
  padding: 10px;
  color: var(--second);
  width: 70%;
}
.paragraphs h4,
.paragraphs2 h4 {
  font-size: 24px;
  font-family: "Zen Dots", sans-serif;
  font-weight: bold;
  margin: 10px 30px;
  padding: 10px;
  color: var(--second);
  width: 70%;
}
.paragraphs2 {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.fansP {
  /* makes sure the width of the paragraphs are equal */
  flex: 1;
  padding: 20px;
  background-color: #c8b594;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #1e1e17;
  /* more space */
  line-height: 1.6;
}

/* News page */
.news-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: var(--second);
  border-radius: 8px;
}

.news-content {
  background-color: #5a5a44;
  padding: 30px;
  border-radius: 8px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.news-post {
  color: #ccc;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.3px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.post-logo {
  padding: 14px 18px;
  background-color: var(--second);
}

.post-title {
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  line-height: 1.4;
}

.post-meta {
  font-size: 12px;
  color: #bda3a3;
  margin-top: 5px;
}

.post-description {
  font-style: italic;
  color: #bda3a3;
  margin: 20px 0;
}

.news-post p {
  margin: 15px 0;
}

.news-post a {
  color: #8a9a87;
  text-decoration: none;
}

.news-post a:hover {
  text-decoration: underline;
}

.post-image {
  margin-top: 25px;
  width: 100%;
  border-radius: 8px;
}

/* About Us page */
.containerE {
  display: flex;
  /*  changes the main axis from the default horizontal to vertical so all items in .containerE are vertically stacked */
  flex-direction: column;
}

.bandname p {
  font-size: 1em;
  color: #353528;
  letter-spacing: 2px;
  margin: 0px 80px;
  font-family: "Scope One", serif;
  font-weight: bold;
  /* positions text lower */
  transform: translateY(40%);
}
.bandname h3 {
  font-size: 3em;
  font-weight: bold;
  color: var(--second);
  margin: 0 60px;
  font-family: "Audiowide", sans-serif;
  font-style: normal;
  /* positions text lower */
  transform: translateY(30%);
}
.aboutDesc p,
.aboutDesc2 p {
  /* larger space inbetween lines */
  line-height: 1.6;
  color: #333;
  margin: 10px;
  font-family: "Zen Dots", sans-serif;
  font-weight: normal;
  font-size: 18px;
  max-width: 600px;
  text-align: justify;
}
.aboutDesc img,
.aboutDesc2 img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.aboutDesc,
.aboutDesc2 {
  display: flex;
  /* centers paragraphs and imgs onto the center of the window */
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  /* makes it so items will stack */
  flex-wrap: wrap;
}

/* MEDIA QUERIES */
/* tablet size screen */
@media (max-width: 768px) {
  .gallery {
    /* when the window size <768px only one image in the .gallery will take up the window space at once instead of 3 */
    grid-template-columns: 1fr;
  }

  .grid-container {
    display: flex;
    /* changes the axis from horz to vert making the imgs show up one at a time vertically */
    flex-direction: column;
  }

  .card {
    margin-bottom: 20px;
  }
  .card img {
    width: 100%;
  }
  .card .icon,
  .card a {
    margin-top: 10px;
  }
  /* nav bar */
  /* changes nav bar height */
  .nav {
    height: auto;
    padding: 20px 0;
  }

  /* stacks nav links vertically */
  .nav ul {
    flex-direction: column;
  }

  .nav li {
    /* spaces out page links */
    margin: 10px 0;
    /* makes font smaller */
    font-size: 20px;
  }
  /* changes the position of the title in the nav */
  .title {
    font-size: 40px;
  }

  /* hides social media icons for the smaller screen */
  .icons {
    display: none;
  }
}
/* phone size screen */
@media (max-width: 600px) {
  .nav .containerNav {
    /* makes the nav bar verticle instead of horizontal (since phones are) */
    flex-direction: column;
    height: 210px;
  }
  .nav ul {
    /* ensures all of the nav links are centered */
    align-items: center;
  }
  .nav li {
    margin: 7px 0;
  }

  /* hides social media icons for the smaller screen */
  .icons {
    display: none;
  }

  /* resizing gallery imgs to be verticle */
  .gallery img {
    width: 100%;
    height: auto;
  }
}
