/* ===== WRAPPER FULL WIDTH (rosso a tutta pagina) ===== */
.beevent-booking-wrap{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #791314;
  padding: 44px 0;
  overflow-x: hidden;
}

/* contenitore centrale */
.beevent-booking{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  font-family: inherit;
  color: #fff;
}

/* titolo */
.beevent-booking-title{
  margin: 0 0 18px;
  font-size: 44px;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

/* form card */
.beevent-booking-form{
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

/* chiuso/esaurito */
.beevent-booking-closed{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 16px 18px;
  border-radius: 10px;
}

/* messaggi */
.beevent-booking-msg .success{
  padding: 14px 16px;
  border: 1px solid rgba(46, 204, 113, .35);
  border-radius: 8px;
  margin: 0 0 14px;
  color: #0b4f2b;
  background: #eaf8f0;
}
.beevent-booking-msg .error{
  padding: 14px 16px;
  border: 1px solid rgba(231, 76, 60, .35);
  border-radius: 8px;
  margin: 0 0 14px;
  color: #7b1e14;
  background: #fdeceb;
}

/* fields */
.beevent-field{
  margin: 0 0 14px;
}

.beevent-field label{
  display: block;
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 14px;
}

.beevent-field input,
.beevent-field textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-size: 14px;
}

.beevent-field input:focus,
.beevent-field textarea:focus{
  outline: none;
  border-color: rgba(121, 19, 20, .55);
  box-shadow: 0 0 0 3px rgba(121, 19, 20, .14);
}

/* NOTE GENERALI: 1 riga vera */
.beevent-field textarea[name="note"]{
  height: 44px;
  min-height: 44px;
  resize: none;
  overflow: hidden;
  line-height: 1.2;
}

/* participants */
.beevent-participants{
  margin: 0 0 14px;
}

#beevent-participants-list{
  margin-top: 8px;
}

.beevent-participant-row{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.beevent-participant-row input{
  flex: 1;
}

.beevent-remove{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.beevent-remove:hover{
  border-color: rgba(121, 19, 20, .55);
}

/* add person */
.beevent-add{
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}
.beevent-add:hover{
  border-color: rgba(121, 19, 20, .55);
}

/* checkbox: ALLINEATA A SINISTRA (quadrato + testo) */
.beevent-checkbox{
  margin: 10px 0 14px;
}

.beevent-checkbox label{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 800;
  margin: 0;
  cursor: pointer;
}

.beevent-checkbox input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin: 0;
}

/* submit */
.beevent-submit{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  background: #791314;
  color: #fff;
  margin-top: 8px;
}
.beevent-submit:hover{
  filter: brightness(.95);
}

/* ===== MOBILE CURA ===== */
@media (max-width: 768px){
  .beevent-booking-wrap{
    padding: 28px 0;
  }

  .beevent-booking{
    padding: 0 14px;
  }

  .beevent-booking-title{
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .beevent-booking-form{
    padding: 16px;
    border-radius: 10px;
  }

  .beevent-participant-row{
    gap: 8px;
  }

  .beevent-remove{
    width: 38px;
    height: 38px;
  }

  .beevent-field input,
  .beevent-field textarea{
    padding: 11px 11px;
  }

  .beevent-field textarea[name="note"]{
    height: 42px;
    min-height: 42px;
  }
}