/* Kontejner formuláře s obrázkovým pozadím */
.iroff-form .webform-submission-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);

  /* Obrázek jako pozadí + overlay */
  background: 
  linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
  url('/sites/default/files/form-background.webp') center/cover no-repeat;


  color: #111;
  position: relative;
}

/* Každý form-item */
.iroff-form .form-item {
  margin-bottom: 18px;
}

/* Label + ikona v řádku */
.iroff-form label {
  display: flex;
  align-items: center;
  gap: 8px; /* mezera mezi ikonou a textem */
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

/* Inputy */
.iroff-form input[type="text"],
.iroff-form input[type="email"],
.iroff-form input[type="tel"],
.iroff-form input[type="number"],
.iroff-form select,
.iroff-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font: inherit;
  box-sizing: border-box;
  background: #fff;
}

.iroff-form textarea { min-height: 120px; }

/* Select fix */
.iroff-form select {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Ikony u labelů */
.iroff-form .form-item-name-jmeno label::before,
.iroff-form .form-item-e-mail label::before,
.iroff-form .form-item-address-adresa label::before,
.iroff-form .form-item-attending-zucastnim-se label::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #555;
  flex: 0 0 auto;
}

/* Konkrétní ikonky */
.iroff-form .form-item-name-jmeno label::before { content: "\f007"; }   /* user */
.iroff-form .form-item-e-mail label::before { content: "\f0e0"; }       /* envelope */
.iroff-form .form-item-address-adresa label::before { content: "\f3c5"; } /* map */
.iroff-form .form-item-attending-zucastnim-se label::before { content: "\f073"; } /* calendar */

/* Tlačítko */
.iroff-form .form-actions .button {
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
}
.iroff-form .form-actions .button:hover { filter: brightness(1.1); }


/* Kontejner – ikony vycentrované */
.iroff-social {
  display: flex;
  justify-content: center; /* vycentruje vodorovně */
  align-items: center;
  gap: 20px;               /* mezera mezi ikonami */
  margin-top: 20px;
}

/* Odkazy bez podtržení, bez outline */
.iroff-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;        /* 🔥 odstraní focus rámeček */
  background: none !important;
  line-height: 0;
  color: inherit;
}

/* Ikony samotné */
.iroff-social img,
.iroff-social svg {
  display: block;
  width: 32px;
  height: 32px;
  transition: transform .2s ease;
}

/* Hover efekt: jen přiblížení */
.iroff-social a:hover img,
.iroff-social a:hover svg {
  transform: scale(1.2);
}








