/* Reset & Grundlegendes */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: helvetica;
  font-family: "PT Mono", monospace;
  font-weight: 400;
  font-style: normal;
  
    font-size: 1em; 
    line-height: 1.8;
  color: #777;
  background: #fff;
  margin: 2em;
}

h3 {
  font-family: arial;
text-transform: uppercase;

	margin-bottom: 15px;
	    font-size: 1.0em; 

	  font-style: bold;

}
  
nav {
    display: flex;
    justify-content: flex-end; /* Elemente rechts ausrichten */
    align-items: center;
    gap: 20px;                 /* Abstand zwischen den Links */
}

nav a {
    text-decoration: none;     /* keine Unterstreichung */
    color: #777;
    font-weight: bold;
}

nav a:hover {
    color: #FF008D;            /* Hover-Effekt */
	transform: scale(1.5);
   transition: background-color 0.3s ease, color 0.3s ease;

}

nav a:active {
    color: #FF008D;            /* Hover-Effekt */
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 gleich breite Spalten */
    gap: 10px; /* Abstand zwischen den Spalten */
    margin-top: 40px;

    margin-bottom: 40px;
}

.item {
    padding: 0px;
    text-align: left;

}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}


ul { margin-top: 10px;}
.social-icons-vertical {
  display: flex;
  flex-direction: column; /* vertikal anordnen */
  align-items: center; /* Icons zentrieren */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Kreis */
  color: #fff; /* Icon-Farbe weiß */
  text-decoration: none;
  font-size: 25px;
  transition: all 0.3s ease;
  margin-bottom: 20px; /* Abstand zwischen den Icons */

}

/* Hintergrundfarben für Marken */
.social-icon.envelope { background-color: #777; }
.social-icon.vimeo { background-color: #777; }
.social-icon.instagram { background-color: #777; }
.social-icon.soundcloud { background-color: #777; }
.social-icon.spotify { background-color: #777; }
.social-icon.youtube { background-color: #777; }

/* Hover-Effekt: leicht vergrößern */
.social-icon:hover {
  transform: scale(1.1);
   transition: background-color 0.3s ease, color 0.3s ease;
   background-color: #FF008D; /* neue Hintergrundfarbe */
  color: #f1f1f1; /* Iconfarbe beim Hover */
  
}

.carousel {
    width: 100%;          /* immer volle Breite */
    height: 400px;        /* oder beliebig */
    overflow: hidden;
    position: relative;
    display: block;       /* wichtig falls display: inline-block gesetzt wurde */
}

.carousel img {
    width: 100%;          /* an Containerbreite anpassen */
    height: 100%;
    object-fit: cover;    /* Bild deckt alles ab */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}



@media(max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Eine Spalte */
	.social-icons {
  display: flex;
  gap: 3px; /* Abstand zwischen den Icons */
}
    }
     .carousel {
        height: 250px;
    }
}