/* -<< STYLE DER STARTSEITE >>- */


/* >/ GRID-LAYOUT \< */

#home-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 2fr 1fr;
  }

#column-links,
#column-rechts {
    margin-block-start: 30px;
  }

.home-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* {FÜR SCHMALERE SCREENS} */

@media (max-width: 1500px) {
  #home-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  grid-template-areas: 
    'mitte'
    'links'
    'rechts';
  }

  .home-column:nth-child(1) {
    grid-area: links;
  }
  .home-column:nth-child(2) {
    grid-area: mitte;
  }
  .home-column:nth-child(3) {
    grid-area: rechts;
  }
}



/* >/ ALLGEMEIN \< */

h2 {
  text-align: center;
}

h3 {
  margin-block-start: 30px;
}

.fenster-trenner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}



/* >/ FÜR SPEZIFISCHE ELEMENTE \< */


/* {FÜR SPRACHAUSWAHL} */

.sprachauswahl {
  position: absolute;
  margin-block-start: 10px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}


/* {LINKE SPALTE} */

/* NEUIGKEITEN FENSTER */
.scroll-fenster {
  display: flex;
  flex-direction: column;
  height: 350px; /*Völlig willkürliche Nummer, je nachdem, was gut aussieht (275px ist ansich alright)*/
}

.scroll-fenster ul {
  display: flex;
  list-style: none;
  margin: 0;
  justify-content: start;
  padding-inline: 0;
  padding-inline-end: 15px;
  gap: 15px;

  flex-direction: column;
  overflow-y: scroll;
}


/* {MITTLERE SPALTE} */

/* VORSTELLUNGS FENSTER */
.wer-fenster {
  align-self: start; /* Überbleibsel des alten Grids - sort dafür, dass ein Fenster nur so weit gestreched wird, bis der gesamte Content drin ist und nicht weiter */
}

/* NEUE-VERÖFFENTLICHUNGEN FENSTER */
.video-einbettung {
  display: flex;
  justify-content: center;
}


/* {RECHTE SPALTE} */

/* MUSIK-EMPFEHLUNG FENSTER */
.musik-fenster {
  text-align: center;
}

.album-cover img {
  height: 100px;
}

.album-cover {
  display: flex;
  justify-content: center;
}

.musik-fenster ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 5px;
}

/* NACHBRASCHAFT FENSTER */
.button-fenster {
  text-align: center;
}

.button img {
  height: 31px;
  width: 88px;
}

.button-grid a {
  display: flex;
  justify-content: center;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 10px;
  column-gap: 4px;
  
}

.akora-button {
  display: flex;
  justify-content: center;
}

.akora-button img {
  height: 62px;
  width: 176px;
}

textarea {
  resize: none;
  width: 176px;
  height: 62px;
}


/* {SOCIAL-LINKS} */

footer {
  margin-block-start: 30px;

  display: grid;
  gap: 30px;

}

#footer-layout {
  grid-auto-columns: 1fr;
  grid-template-areas: 
    '. rym rym rym rym rym gd gd gd gd gd .';
}

.social-link:nth-child(1) {
  grid-area: rym;
}
.social-link:nth-child(2) {
  grid-area: gd;
}

.social-link {
  padding: 15px;
  text-align: center;
}

.social-link p {
  margin: 0;
}




/* -<< STYLE DES ARCHIVS FÜR MUSIK-EMPFEHLUNGEN >>- */

.archiv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-block-start: 30px; /* Temp-Lösung für das Problem, dass die Navbar am Grid klebt - für andere Seiten habe ich immer der Navbar eine 30px margin nach unten gegeben, was auch nicht gerade elegant ist */
}
