@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
/*
GT = Grid Text
GH = Grid Header
GI = Grid Image
ST = Stuff
ABI = About us image
ABT - About us text
*/
.sora {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.gt{
    font-size: 2vw;
    width: 100%;
}
.gh{
    font-size: 2vw;
    text-align: center;
}
.gi{
    width: 20px;
}
.st{
    height: auto;
}
.ABI{
    width: 20px;
}
iframe{
    margin: auto;
}
.ABT{
    width:20px;
}
.SONGS{
    grid-area: SONGS;
    width: 30%;
    height: 300px;
}
.SONGS2{
    grid-area: SONGS2;
    width: 30%;
    height: 300px;
}
a{
    text-decoration: none;
    color: black;
    width: 20%;
    background-color: rgb(185, 185, 185,0.5);
    padding: 15px;
    margin: auto;
    text-align: center;
    transition: background-color 0.3s;
}
a :visited { 
    text-decoration: none;
    color: black;
}
header img{
    display: flex;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    transition: border-radius 0.5s;
}
header img:hover{
    border-radius: 0%;
}
.start{
    border-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    
}
.end{
    border-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
nav a:hover{
    background-color: rgb(81, 81, 81);
}
header{
    display: flex;
    flex-wrap: nowrap;
}
nav{
    display: flex;
    border: 5px black solid;
    margin-left: auto;
    margin-right: 0;
    justify-content: space-evenly;
    width: 100%;
    height: 45px;
    padding: 25px;
    background-color: wheat;
    background-color: rgba(0, 0, 0, 0.5);
}
body{
    background-image: url(Image/gray.png);
    background-color: #A8A8A8;
    background-repeat: repeat;
    background-size:100%;
}
.stuff1{
    display: grid;
    grid-template-columns:
    "gt gt gt"
    "gt gt gt"
    "gh gh gh"
    "gi gi gi"
    "gi gi gi"
    "st st st"
    ;
    grid-template-rows: auto;
    gap: 20px;
    width: 60%;
    background-color: rgb(255, 255, 255);
    border: 5px solid black;
    height: auto;
    margin: auto;
}
.stuff2{
    display: grid;
    grid-template-columns:
    "ABI ABT"
    "ABI ABT"
    "ABI ABT"
    "ABI ABT"
    "ABI ABT"
    "ABI ABT"
    ;
    grid-template-rows: auto;
    gap: 20px;
    width: 60%;
    background-color: rgb(255, 255, 255);
    border: 5px solid black;
    height: 100%;
    margin: auto;
}
.stuff3{
    display: flex;
    width: fit-content;
    background-color: rgb(255, 255, 255);
    border: 5px solid black;
    height: auto;
    margin: auto;
    padding: 25px;
}
.stuff4{
    display: flex;
    flex-wrap: nowrap;
    width: 60%;
    background-color: rgb(255, 255, 255);
    border: 5px solid black;
    height: 200px;
    margin: auto;
}
/* Slideshow Stuff */
.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    height: 600px;
    border: 5px solid black;
    border-radius: 10px;
    background-color: white;
  }
  .slideshow-container2 {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    height: 600px;
    border: 5px solid black;
    border-radius: 10px;
    background-color: white;
  }
  .slides {
    display: none;
    width: 100%;
    position: relative;
  }
  .slideshow-container img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .active {
    display: block;
  }
  .title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .description {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    border-top: 1px solid #ddd;
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 5px;
  }
  .prev { left: 10px; }
  .next { right: 10px; }
.slides img{
    width: 300px;
    height: 300px;
}
.slideshow-container2 .slides img {
    width: 100%;
    height: 100%;
}
/* Song List Stuff */
.song-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: auto;
    max-width: 60%;
    background-color: white;
    border: 5px solid #000000;
    border-radius: 5px;
}

.set {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.set h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.set ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.set ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}
@media (max-width: 599px) {
    header img {
      width: 80px;
      height: 80px;
    }
    nav {
      flex-direction: column;
      align-items: flex-end; 
      gap: 10px;
      height: auto;
      width: 60%;
    }
    .start, .end{
        border-radius: 0;
    }
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer p {
    margin: 0;
}