:root {
    --color-beige: #E8E3C3;
    --color-brown: #794A3A;
    --color-red: #DD5341;
    --color-orange: #F57F5B;
    --color-yellow: #FACA78;
    --color-blue: #68C7C1;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: 'montserrat';
    background-color: var(--color-blue);
}

/* Font styling */
h1, h2, h3, p {
    font-family: 'montserrat';
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    color: var(--color-brown);
}

h1 {
  margin-top: 24px;
}
  

#chart {
    max-width: 70%;
    align-items: center center;
    max-height: 150px;
    background-color: var(--color-beige);
    margin-top: 13vh;
}

.hintergrund {
    background-image: url(../assets/Radio_BG.png); /* Pfad zum Bild */
    background-position: center center; /* horizontal & vertikal zentriert */
    background-repeat: no-repeat; /* Bild nicht wiederholen */
    background-size: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh; /* volle Höhe des Browserfensters */
    margin: 100px;
  }

  .infocontent {
    max-width:30%;
    margin-top: 7vh;
  }


/* --- Suchfeld-Container --- */
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  .input-wrapper {
    display: flex;
    align-items: center; /* vertikal zentrieren */
    width: 220px;
    border: 2px solid var(--color-brown);
    border-radius: 30px;
    padding: 0 10px;
    background-color: transparent;
  }
  
  /* --- Inputfeld --- */
  #artist {
    flex: 1; /* Input nimmt den gesamten Platz ein */
    border: none;
    outline: none;
    padding: 10px 0 10px 10px;
    font-size: 16px;
    background: transparent;
    font-family: 'montserrat';
    color: var(--color-brown);
    outline: none;
    border-radius: 30px;
    transition: border-color 0.3s;
  }
  
  #artist::placeholder {
    color: var(--color-brown);
    opacity: 0.5;
  }

  
  
  /* --- Button mit SVG-Pfeil nach rechts --- */
  .search-btn {
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
  }

  .search-btn img {
    width: 20px;
    height: 20px;
    filter: invert(21%) sepia(24%) saturate(764%) hue-rotate(340deg) brightness(91%) contrast(87%); /* Braun */
    transition: filter 0.3s ease, transform 0.2s ease;
  }
  
  .search-btn:hover img {
    filter: invert(94%) sepia(14%) saturate(394%) hue-rotate(358deg) brightness(96%) contrast(90%); /* Beige */
  }