* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Luckiest Guy';
}

body {
  display: grid;
  grid-template-columns: 1fr;
}

/* ----- NAVIGATIONSLEISTE ----- */

header {
  background: blueviolet;
  color: white;
  padding: 1em;
}

a {
  text-decoration: none;
}

.branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branding-left {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1em;
}

.branding img {
  height: 3em;
}

.toggle {
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: none; /* Versteckt auf kleinen Screens */
}

nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1em;
}


nav ul li a, .branding a {
  color: white;
  transition: color 0.2s ease;
}

nav ul li a:hover, .branding a:hover {
  color: rgba(255, 255, 255, 0.666);
  text-decoration: underline;
}


/* Wenn die Navigation aktiv ist */
nav.active {
  display: flex;
  justify-content: flex-end;
  padding: 1em 0em;
}

@media (min-width: 768px) {
  .toggle {
    display: none; /* Menü-Button ausblenden */
  }

  header {
    display: flex;
    justify-content: space-around;
  }

  nav {
    display: flex; /*Navigation dauerhaft sichtbar */
    align-items: center;
  }

  nav ul {
    flex-direction: row;
    gap: 3em;
  }
}

/* ----- HERO SECTION -----       hier beginnt index.html    */

main {
  background: linear-gradient(to bottom right, #1f1f2e, #6b21a8, #db2777);
}

#hero-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-items: center;
  color: white;
  padding: 1em;
  gap: 3em;
}

#hero-section h2 {
  padding-top: 1em;
  font-size: 3em;
}

.highlight {
  background-color: #c084fc;
  background-clip: text;                /* Für volle Kontrolle einfach mit und ohne Präfix machen ! */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


#hero-section p {
  font-size: 1.5em;
  line-height: 1.2em;
  padding-bottom: 2em;
}

@media(min-width: 768px) {

  #hero-section h2 {
    font-size: 4em;
  }
  #hero-section p {
    font-size: 2em;
    line-height: 40px;
  }
  #hero-section .buttons {
    flex-direction: row;
    justify-content: center;
  }

}
@media(min-width: 1024px) {

  #hero-section h2 {
    font-size: 4em;
  }

  #hero-section p {
    font-size: 2em;    
  }

  #hero-section {
    padding: 4em 2em 5em;
  }
}

/* ----- INFO Section ----- */

#info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding-bottom: 3em;
  color: white;
}

#info .info-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2em 3em;
  border-radius: 2em;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  width: 80vw;
}

#info .info-card h3 {
  font-size: 2em;
  color: #f472b6;
}

#info .info-card:nth-of-type(2) h3 {
  color: #be7fbd;
}

#info .info-card p {
  font-size: 1.5em;
}

@media(min-width: 768px) {
  #info .info-card p {
    font-size: 2em;
  }
}

/* ----- 4 Schritte Section ----- */

#steps {
  display: grid;
  grid-template-columns: 1fr;
  background-color: black;
  padding: 1em 2em 4em;
  gap: 1em;
  min-height: 60vh;
  color: white;
}

#steps h4 {
  font-size: 2em;
  padding: 1em 0;
  text-align: center;
}

#steps p {
  color: #9ca3af;
  font-size: 1.5em;
}

#steps > p {
  padding: 1em 0 2em;
  text-align: center;
}

.decoration-circle {
  width: 2em;
  height: 2em;
  border-radius: 6em;
}

#steps > div {
  display: flex;
  flex-direction: column;
  padding: 1em;
  border-radius: 2em;
  background-color: #1f2937;
}

#step-1, #step-1 .decoration-circle {
  border: 1px solid rgb(181, 50, 252);
}
#step-1 .decoration-circle {
  background-color: rgb(181, 50, 252);
}

#step-2 {
  border: 1px solid rgb(241, 9, 206);
}
#step-2 .decoration-circle {
  background-color: rgb(241, 9, 206);
}

#step-3 {
  border: 1px solid rgb(0, 162, 255);
}
#step-3 .decoration-circle {
  background-color: rgb(0, 162, 255);
}

#step-4 {
  border: 1px solid yellow;
}
#step-4 .decoration-circle {
  background-color: yellow;
}

#steps h5 {
  text-align: center;
  padding: 1em 0;
  font-size: 1.5em;
}

@media(min-width: 768px) {
  #steps {
    grid-template-columns: 1fr 1fr;
  }
  #steps > h4, #steps > p {
    grid-column: 1 / -1;
  }
  #steps h5 {
    font-size: 2em;
  }
}

@media(min-width: 1024px) {
  #steps {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #steps div p {
    font-size: 1.5em;
    text-align: center;
  }
  #step-2 {
    grid-column: 2 / 4;
  }
  #step-1 {
    grid-column:  1 / 2;
    grid-row: 3 / 5;
  }

}


/* ----- Footer Section ----- */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: blueviolet;
  padding: 1.5em;
  gap: 1.5em;
  color: white;
}

footer p {
  font-size: 1.5em;
  text-align: center;
}

footer ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  gap: 1em;
}

footer ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 1.5em;
}

footer ul li a:hover {
  color: rgba(255, 255, 255, 0.688);
}

@media(min-width: 768px) {
  footer ul {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* -------------------- Hier beginnt quiz.html -------------------- */

#quiz-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em;
  gap: 2em;
  color: white;
}

#quiz-header h1 {
  font-size: 2em;
  padding-top: 1em;
}

#quiz-header p {
  font-size: 1.5em;
}

#quiz-layout {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2em;
  gap: 2em;
}

.quiz-questions {
  display: flex;
  flex-direction: column;
  color: white;
  padding: 2em;
  gap: 1em;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 3em;
}

.quiz-questions h2 {
  font-size: 1.8em;
  text-align: center;
}

.quiz-questions button {
  background-color: blueviolet;
  padding: 1.5em;
  color: white;
  font-size: 1.4em;
  border-radius: 2em;
}

.quiz-questions button:hover {
  background-color: rgb(155, 76, 229);
  cursor: pointer;
}

.quiz-questions button:active {
  background-color: rgb(168, 94, 237);
}

.quiz-questions .solution-1, .quiz-questions .solution-2, .quiz-questions .solution-3, .quiz-questions .solution-4 {
  display: flex;
  align-items: center;
  padding: 0.4em 0;
  font-size: 1.5em;
  gap: 1em;
}

.quiz-questions input {
  width: 1.5em;
  height: 1.8em;
  transform: translateY(-0.4em);
}

.quiz-questions h3 {
  text-align: center;
  font-size: 2em;
  padding: 1em 0;
}

#quiz-layout h4 {
  text-align: center;
  color: white;
  font-size: 2em;
  padding: 1em;
  line-height: 1em;
  background-color: #1f1f2e;
  border-radius: 1.5em;
}

@media(min-width: 768px) {

  #quiz-layout {
    grid-template-columns: 1fr 1fr;
  }

  #quiz-header h1 {
    font-size: 3em;
  }

  #quiz-header > p {
    font-size: 2em;
    line-height: 1em;
    padding: 1em 0;
  }

  #quiz-layout h4 {
    grid-column: 3 / -3;
    padding: 2em 0;
  }
}

@media(min-width: 1024px) {

  #quiz-layout {
    grid-template-columns: 1fr 1fr 1fr;
  }

  #quiz-layout h4 {
    grid-column: 4 / -4;
  }

  #quiz-layout .quiz-questions:nth-of-type(4) {
    grid-column: 2 / -2;
  }
}


/* ---------- rockstarGuide.html ---------- */

#rockstarGuide-header {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2em;
  gap: 1em;
}

#rockstarGuide-header h1 {
  font-size: 2em;
  padding: 1em 0;
}
#rockstarGuide-header > p {
  font-size: 1.5em;
  padding-bottom: 1em;
}

#piano-guide {
  display: grid;
  padding: 1em;
  color: white;
  gap: 2em;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 4em;
}
#piano-guide h2 {
  text-align: center;
  font-size: 2em;
  padding-top: 1em;
}

#piano-guide .piano-guide-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #1f1f2e;
  padding: 1.5em;
  gap: 2em;
  border-radius: 2em;
}

#piano-guide .piano-guide-steps h3 {
  text-align: center;
  font-size: 1.6em;
}

#piano-guide .piano-guide-steps p {
  font-size: 1.2em;
}

#piano-guide img {
  width: 14em;
  height: 12em;
  border-radius: 1em;
}

@media(min-width: 768px) {

  #piano-guide h2 {
    grid-column: 1 / -1;
  }

  #piano-guide {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 1024px) {

  #piano-guide {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #rockstarGuide-header h1 {
    font-size: 3em;
  }
  #rockstarGuide-header > p {
    font-size: 2em;
  }
}

/* -- Clothing Section -- */

#clothing img {
  width: 20em;
  border-radius: 4em;
  justify-self: center;
}

#clothing {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #1f2937;
  color: white;
  padding: 1em;
}

#clothing h4 {
  font-size: 2em;
  text-align: center;
  padding: 2em 0;
}

#clothing > p {
  font-size: 1.5em;
  text-align: center;
  padding: 0 1em 3em;
}

#clothing ol {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.5em;
  padding: 0 2em;
  gap: 1em;
}

#clothing h5, h6 {
  padding: 2em 0;
  font-size: 1.5em;
  text-align: center;
}

#clothing h6 {
  padding-bottom: 2em;
}

@media(min-width: 768px) {
  #clothing {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1em;
  }

  #clothing h4 {
    font-size: 2em;
    grid-column: 1 / -1;
  }

  #clothing > p {
    font-size: 2em;
    padding: 0 1em;
  }

  #clothing ul li {
    font-size: 1.5em;
  }

  #clothing h5 {
    font-size: 2em;
    grid-column: 1 / -1;
  }

  #clothing h6 {
    grid-column: 1 / -1;
  }

  #clothing img {
    width: 28em;
    height: 28em;
    grid-column: 1 / -1;
  }
}

@media(min-width: 1024px) {

  #clothing img {
    grid-column: 1;
  }

  #clothing h5 {
    grid-row: 3;
    grid-column: 2 / 2;
    padding: 0 1em;
  }
}


/* ----- Bandname Generator Section ----- */

#bandname-generator-main {
  display: flex;
  justify-content: center;
  padding: 2em 0;
}

#bandname-hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  gap: 1.5rem;
  text-align: center;
  padding: 1em;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  border-radius: 2em;
  width: 90vw;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

#bandname-hero-section h2 {
  font-size: 2em;
}

#bandname-hero-section p {
  font-size: 1.4rem;
  opacity: 0.8;
}

#bandname-generator-button {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 200;
  border: none;
  border-radius: 1em;
  background-color: blueviolet;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#bandname-generator-button:hover {
  background-color: rgb(173, 124, 219);
  transform: translateY(-2px);
}

.bandname-output-box {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 40vw;       
  min-width: 280px;     
  width: 100%;         
  text-align: center;
}

#bandname-generator-output {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  transition: opacity 0.3s ease;
  word-break: break-word;
}

@media (min-width: 768px) {
  #bandname-hero-section h2 {
    font-size: 2.5rem;
  }

  #bandname-hero-section p {
    font-size: 1.2rem;
  }

  #bandname-generator-output {
    font-size: 4rem;
  }

  #bandname-generator-output {
    font-size: 4rem;
  }
}

@media (max-width: 900px) {
  .bandname-output-box{
    max-width: 100%; 
  }
}


/* ---------- About Us ---------- */

#rockstart-intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  padding: 1em 2em;
  gap: 2em;
  
}
#rockstart-intro h1 {
  padding: 1em;
  font-size: 2em;
}
#rockstart-intro p {
  font-size: 1.5em;
  line-height: 1em;
}
#rockstart-intro article {
  background-color: #1f1f2e;
  padding: 2em;
  border-radius: 2em;
}
#description h2 {
  padding: 2em 0;
  line-height: 1.5em;
}

#team-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  padding: 12px;
  max-width: 100vw;
}

#team-members .member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 1em;
  color: white;
  gap: 2em;
}

#team-members .member img {
  width: 8em;
  height: 8em;
  order: -1;
  justify-self: center;
  border-radius: 10em;
}

#team-members .member h2 {
  font-size: 2em;
  align-self: center;
  justify-self: center;
}

#team-members .member p {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1em;
  line-height: 1.2em;
  order: 3;
}

#team-members .short-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}

#team-members .member:nth-of-type(2) img, #team-members .member:nth-of-type(4) img, #team-members .member:nth-of-type(6) img {
  order: 2;
  justify-content: center;
}


@media(min-width: 768px) {

  #team-members .member p {
    font-size: 1.5em;
  }
}

@media(min-width: 1024px) {

  #rockstart-intro p {
    font-size: 2em;
    line-height: 1em;
  }

  #team-members {
    grid-template-columns: 1fr 1fr;
  }

  #team-members .member p {
    font-size: 1.5em;
  }

  #team-members .member img {
    width: 12em;
    height: 12em;
  }
  /* 
    1: Erkan
    2: Sascha
    3: Max
    4: Lisa
    4: Maria
    6: Nico
  */

  #team-members .member:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #team-members .member:nth-of-type(3) {
    grid-column: 2 / -2;
    grid-row: 1 / 3;
  }

  #team-members .member:nth-of-type(3) img {
    order: 1;
  }

  #team-members .member:nth-of-type(4) img {
    order: -1;
  }

  #team-members .member:nth-of-type(4) {
    grid-column: 1 / 1;
    grid-row: 2 / 3;
  }
  #team-members .member:nth-of-type(2) img {
    order: -1;
  }
  #team-members .member:nth-of-type(2) {
    grid-column: 1;
    grid-row: 3 / 5;
  }
  #team-members .member:nth-of-type(5) img {
    order: 1;
  }



  #team-members .member:nth-of-type(3) img, #team-members .member:nth-of-type(2) img {
    align-self: center;
  }
  #team-members .member:nth-of-type(3) p {
    padding-left: 1em;
    padding-right: 1em;

  }
}


/* Datenschutz und Impressum */

#privacy-section,
#impressum-section {
  max-width: 50%;
  margin: 0 auto;
  padding: 2em 0em;
  color: white;
  line-height: 1.7;
}

#privacy-section h2,
#impressum-section h2 {
  font-size: 1.5em;
}

#privacy-section h3,
#impressum-section h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #f472b6;
}

#privacy-section p,
#impressum-section p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #f0f0f0;
}

@media (min-width: 768px) {
  #privacy-section h2,
  #impressum-section h2 {
    font-size: 3rem;
  }

  #privacy-section p,
  #impressum-section p {
    font-size: 1.1rem;
  }
}