@import "custom_sections.css";
@import "custom_font.css";
/* 
@import "custom_newsletter_mail.css";
*/

/***********************************/
/* Visforms: Formulare und Kontakt */
/***********************************/
/* Abstand unter jedem Visforms Feld */
.visforms .form-group.row { 
    margin-bottom: 10px !important;
}


/*********************************************/
/* SP Page Builder Free Accordion – Icon Fix */
/*********************************************/

.sppb-panel-heading {
    position: relative;
    padding-right: 30px;
}

.sppb-panel-heading::before {
/*    content: "?"; */
/*    content: "+"; */
    content: "+";
    font-family: system-ui, Arial, sans-serif;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
/*
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease; */
}

.sppb-panel-heading.active::before {
/*    content: "–"; */
/*    content: "?"; */
    content: "-";
    transform: translateY(-50%) rotate(180deg);
}











.mytooltip {
  color: #3d4435;
  text-align: left;
}

.team-profile-highlight{
  font-weight: bold;
  text-decoration: underline;
  color: red;
}

.meine-versteckte-section {
  display: none !important;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}

.team-member {
  /* background: #e0e5da; */
  background: #CEAEA6;
  color: #3d4435;

  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.team-member img {
  border-radius: 5%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.team-member .role {
  font-style: italic;
  color: #777;
  margin-bottom: 1rem;
}

/* Plus-Button / Mehr erfahren Button */
.toggle-btn {
  background: #9f5d5d;
  color: white;
  border: none;
  /* border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.4rem; */
  /* +Text statt "+" */
  padding: 10px;
  border-radius: 8px;
  /* -Text statt "+" */
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.toggle-btn:hover {
  background: #8a4242;
}

.team-member.active .toggle-btn {
  /* transform: rotate(45deg); */
  background: #ccc;
}

/* Versteckter Text */
.more-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member.active .more-info {
  max-height: 400px;
  overflow: auto;
  opacity: 1;
  margin-top: 1rem;
}

/* Feature-Box Inhalt mit Button "Mehr erfahren..." */

.feature-box-content {
  background: #CEAEA6;
  color: #3d4435;
  position: relative;
}

.feature-box-content.active .toggle-btn {
  background: #ccc;
}

.feature-box-content.active .more-info {
  max-height: 400px;
  overflow: auto;
  opacity: 1;
  margin-top: 1rem;
}

