/* Container für Produkte */
#features .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 16px; // entfernen, wenn du es per Tailwind steuern willst */
}

/* Produktkarte */
#features .bg-white {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#features .bg-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Titel und Texte der Karten */


/* Button-Styling */
#features .inline-block {
    display: inline-block;
    padding: 10px 24px;
    background-color: #BA9D89;
    color: white;
    font-size: 0.875rem;
    font-weight: 500; /* 'medium' ist nicht gültig, 500 entspricht 'medium' */
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

#features .inline-block:hover {
    background-color: #a58b76; /* Dunklerer Ton für Hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    #features .bg-white {
        width: 100%;
    }
}



.wrapper {
    transform: scale(0.75);
    transform-origin: top left;
    width: 133.33%;
    margin-top: 25px;
    /* WICHTIG: Sichtbar lassen */
    overflow: visible; 
}





/* Container für Produkte */
#about .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 16px; // entfernen, wenn du es per Tailwind steuern willst */
}

/* Produktkarte */
#about .bg-white {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#about .bg-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


/* Button-Styling */
#about .inline-block {
    display: inline-block;
    padding: 10px 24px;
    background-color: #BA9D89;
    color: white;
    font-size: 0.875rem;
    font-weight: 500; /* 'medium' ist nicht gültig, 500 entspricht 'medium' */
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

#about .inline-block:hover {
    background-color: #a58b76; /* Dunklerer Ton für Hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    #about .bg-white {
        width: 100%;
    }
}

/* Beispiel-Klasse: .mail-button */
.mail-button {
    display: inline-block;           /* wie "inline-block kaufen-button" */
    background-color: #ba9d89;       /* Basis-Farbe */
    color: #fff;                     /* Schrift weiß */
    padding: 0.75rem 1.5rem;         /* Abstand */
    border-radius: 12px;           /* abgerundete Ecken */
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .mail-button:hover {
    background-color: #a58b76;       /* Hover-Farbe */
  }
  


  /* Container für Produkte */
#sustainability .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 16px; // entfernen, wenn du es per Tailwind steuern willst */
}

/* Produktkarte */
#sustainability .bg-white {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Titel und Texte der Karten */


/* Button-Styling */
#sustainability .inline-block {
    display: inline-block;
    padding: 10px 24px;
    background-color: #BA9D89;
    color: white;
    font-size: 0.875rem;
    font-weight: 500; /* 'medium' ist nicht gültig, 500 entspricht 'medium' */
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

#sustainability .inline-block:hover {
    background-color: #a58b76; /* Dunklerer Ton für Hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Nachhaltigkeitsbox exakt auf 76rem Breite und gewünschte Höhe setzen */
#sustainability .sustainability-box {
    width: 76rem;       /* exakte Breite: 76rem */
    min-height: 600px;   /* Mindesthöhe, hier als Beispiel 700px – passe den Wert nach Bedarf an */
    margin: 0 auto;      /* zentriert die Box horizontal */
}


/*igene Styles (z. B. .btn-choco) */

  .btn-choco {
    background-color: #ba9d89; 
    color: #fff;
    transition: background-color 0.2s ease-in-out;
  }
  .btn-choco:hover {
    background-color: #a58a79; /* etwas dunklerer Hover-Farbton */
  }


  html {
    scroll-behavior: smooth;
  }

/* Styling für den About-Button */
.about-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #BA9D89;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative; /* Sicherstellen, dass er über anderen Elementen liegt */
    z-index: 10; /* Höherer z-index, um Klickbarkeit zu gewährleisten */
  }
  
  .about-button:hover {
    background-color: #a58b76;
    transform: scale(1.05);
  }
  
  /* Sicherstellen, dass der Wrapper die Klickbarkeit nicht beeinträchtigt */
  .wrapper {
    transform: scale(0.75);
    transform-origin: top left;
    width: 133.33%;
    margin-top: 25px;
    overflow: visible;
    position: relative;
    z-index: 1;
  }