body {
    background: var(--gradiente);
}

section {
    background-color: transparent;
}

section.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

section.header img {
    width: 100px;
    height: 100px;
}

section.header h1{
  color: var(--gold);
  text-transform:uppercase;
}

section.tagline {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: row;
  justify-items: start;
  flex-wrap: wrap;
  align-content: center;
  gap: var(--flex-gap);
}

section.tagline p {
  flex: 1 1 calc(50% - var(--flex-gap));
  font-weight:500;
  font-size: 1.2rem;
  color:white;
  text-align: justify;
}

section.tagline p:nth-child(3) {
  flex: 1 1 100%;
  color:var(--gold);
  font-size: 1.5rem;
  text-align: center;
}

@media (max-width: 600px) {
  section.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}
  section.tagline p {
    flex: 1 1 100%; /* 1 item per riga su schermi stretti */
  }

}

/*CARD*/
.card.handwerk::before {
  background-image: url('img/index-handwerk.jpg');
}
.card.startup::before {
  background-image: url('img/index-startup.png');
}
.card.businessplan::before {
  background-image: url('img/index-businessplan.jpg');
}