@font-face {
  font-family: "Ronzino";
  src: url("/font/Ronzino-Regular.woff2") format("woff2");
  font-weight: normal;
}

@font-face {
  font-family: "Ronzino Bold";
  src: url("/font/Ronzino-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Ronzino Oblique";
  src: url("/font/Ronzino-Oblique.woff2") format("woff2");
}

.uncial-antiqua-regular {
  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  overflow-x: hidden;
}

img {
  max-width: 100vw;
}

.tag {
  opacity: 0;
  transform: translate(0, 40vh);
  transition: all 2s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.mobile_only {
  margin-top: 200px;
}

@media screen and (min-width: 1200px) {
  .mobile_only {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .pc_only {
    display: none;
  }
}

/* HEADER */

.logo {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 200px;
}

@media screen and (max-width: 1200px) {
  .logo img {
    width: 80%;
    max-width: 600px;
  }
}

#menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0 20px 0;
  background-color: black;
  z-index: 1000;
}

#menu a {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  padding: 7px 45px 7px 45px;
}

/* Change the color of links on hover */
#menu a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
#menu a:active {
  background-color: #ddd;
  color: black;
}

@media screen and (max-width: 800px) {
  .logo {
    margin-top: 0px;
    margin-bottom: 250px;
  }
  #menu {
    max-width: 100vw;
    justify-content: space-evenly;
    gap: 0px;
  }

  #menu a {
    font-size: 15px;
    padding: 5px 15px 5px 15px;
  }
}

#menu a.active {
  background-color: #ddd;
  color: black;
}

/* MAIN */

p,
h1,
h3,
h4,
a,
button {
  font-family: "Ronzino";
}

h2 {
  font-family: "Uncial Antiqua", serif;
  margin: auto;
  width: fit-content;
  font-size: 35px;
  color: white;
  border-bottom: solid 2px #880f09;
  padding-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  h2 {
    font-size: 20px;
  }
}

/* LIVE PERFORMANCES */

#live {
  margin: auto;
  width: 40%;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  text-align: center;
  margin: 50px 0 0 0;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  font-family: "Ronzino Oblique";
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #880f09;
  font-size: 28px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: white;
  transition: 0.7s;
}

/* Create an active/current tablink class */
.tab button.active {
  font-family: "Ronzino Bold";
  color: white;
  font-size: 30px;
  transition: 0.7s;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  color: white;
  text-align: center;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.performance_list {
  padding: 70px 0 70px 0;
  border-bottom: #880f09 solid 1px;
}

.performance_list h3 {
  font-weight: bold;
  font-size: 25px;
}

.performance_list h4 {
  font-size: 20px;
}

.performance_list a {
  font-size: 15px;
  color: white;
  transition: 0.7s;
}

.performance_list a:hover {
  color: #880f09;
  transition: 0.7s;
}

.performance_list h3,
h4,
a {
  padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
  #live {
    width: 80%;
  }
  .tab button {
    font-size: 18px;
  }
  /* Create an active/current tablink class */
  .tab button.active {
    font-size: 20px;
  }
  .performance_list h3 {
    font-size: 20px;
  }

  .performance_list h4 {
    font-size: 15px;
  }

  .performance_list a {
    font-size: 10px;
    color: white;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #live {
    width: 60%;
  }
}

/* ABOUT and VIDEO */

#about {
  color: white;
  text-align: center;
  margin-top: 50px;
  line-height: 2em;
}

#about h3 {
  font-family: "Uncial Antiqua", serif;
}

#about hr {
  border: solid 1px #880f09;
}

#about p {
  margin: 50px 0 100px 0;
}

.red_border {
  border: #880f09 solid 1px;
  margin: auto;
  width: 70%;
  margin-top: 200px;
}

.about_paragraph {
  margin: 40px 35px 100px 35px !important;
}

#video {
  color: white;
  text-align: center;
}

#video p {
  font-size: 25px;
}

#video iframe {
  max-width: 80%;
}

.video_streaming {
  margin: auto;
  width: 100%;
  margin: 20px 0px 20px 0px;
}

.more {
  background-color: #880f09;
  border: none;
  font-size: 15px;
  margin-bottom: 50px;
  padding: 10px;
  transition: 0.7s;
}

.more a {
  color: white;
  text-decoration: none;
}

.more:hover {
  background-color: #000000;
  border: #880f09 solid 1px;
  padding: 20px;
  transition: 0.7s;
}

.more:active {
  background-color: #000000;
  border: #880f09 solid 1px;
  padding: 20px;
  transition: 0.7s;
}

@media screen and (max-width: 1000px) {
  .red_border {
    width: 90%;
  }

  #about {
    margin-top: 50px;
  }

  #video iframe {
    width: 560px;
    height: 315px;
  }
}

/* GALLERY */

#gallery {
  margin: auto;
  width: 100%;
  margin-top: 100px;
  background-color: #3b3b3b;
  padding: 50px 0 50px 0;
}

#gallery h2 {
  margin: auto;
  width: fit-content;
  color: white;
  border-bottom: solid 1px #8c0000;
}

.gallery_grid {
  margin: auto;
  width: 50%;
  justify-content: center;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 30px;
}

.gallery_item {
  width: 200px;
  height: 200px;
}

.gallery_item:hover {
  outline: #8c0000 solid 10px;
}

.gallery_item:active {
  outline: #8c0000 solid 10px;
}

.gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_item--1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery_item--2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.gallery_item--3 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}
.gallery_item--4 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery_item--5 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
.gallery_item--6 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery_item--7 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
}

.gallery_item--8 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}
.gallery_item--9 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 4;
}

@media screen and (max-width: 1000px) {
  .gallery_grid {
    margin-top: 40px;
  }
  .gallery_item {
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 800px) {
  .gallery_item {
    width: 100px;
    height: 100px;
  }

  .gallery_item:hover {
    outline: #8c0000 solid 10px;
  }
}

/* SNS*/

#sns {
  margin: auto;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 200px;
}

#sns p {
  font-size: 25px;
  color: white;
  text-align: center;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-top: 70px;
}

.flex-container li {
  padding: 30px;
  outline: #880f09 solid 1px;
  transition: 0.7s;
}

.flex-container li:hover {
  padding: 40px;
  outline: #880f09 solid 1px;
  transition: 0.7s;
}

@media screen and (max-width: 800px) {
  #sns {
    padding: 10px;
    margin-bottom: 100px;
    margin-top: 50px;
  }

  .flex-container {
    gap: 10%;
  }
  .flex-container li {
    padding: 10px;
  }
  .flex-container li:hover {
    padding: 15px;
  }
}
