/* Grundinställningar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f0ea;
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 800px;
  padding: 20px;
}

/* Logotyp */
.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

/* Rubrik */
h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Text */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1;
  padding: 10px;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  background-color: #000000;
}

/* Knapp */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.button:hover {

}

.spotify-embed {
	height: 475px;
	margin-bottom:25px;
}

/* Mobilanpassning */
audio::-webkit-media-controls-panel {
  background-color: #f4f0ea;
}


/* Mobilanpassning */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 120px;
  }
}

/* Formulär */

#form {
  padding: 20px;
  margin-bottom:25px;
}

button.button {
  border: none;
  font-size: 1.1rem;
}

#form .field {
  margin: 0 0 1rem 0;
  border: 0;
  padding: 0;
}

#form .field > legend {
  display: block;
  margin: .35rem 0;
  font-family: "Special Elite", system-ui;
  margin:auto;
}

#form .field > label {
  display: block;
  margin: .35rem 0;
  font-family: "Special Elite", system-ui;
}

#form input[type="text"] {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: .6rem .75rem;
  border: 1px solid #000000;
}

#form input[type="text"]:focus {
  outline: none;
  border: 1px solid #000000;
}

#form input[type="checkbox"]:checked {
  accent-color: #000000;  /* gör bakgrunden + bocken svart */
}

#form .response {
  margin-top: 1rem;
  font-weight: bold;
}

#form .response:empty {
  display: none;
}

.response {
  margin-bottom:25px;
  font-family: "Special Elite", system-ui;
  color:#000000;
}

/* honeypot dold */
#form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; 
  height: 1px; 
  overflow: hidden;
}

