/*--------------------------------------------------------------
# Styles pour le système de réservation d'experts
# Inspiré du template Fobex
--------------------------------------------------------------*/

/* Styles pour la page des disponibilités d'experts */
.expert-detail {
  padding: 120px 0 90px;
  position: relative;
  z-index: 1;
}

/* Expert Sidebar */
.expert-sidebar {
  margin-bottom: 30px;
}

.expert-sidebar__single {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.expert-sidebar__info {
  position: relative;
  display: block;
  padding: 30px 30px 22px;
  background-color: #ffffff;
}

.expert-sidebar__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #15332A;
}

.expert-sidebar__img {
  position: relative;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.expert-sidebar__img img {
  width: 100%;
  border-radius: 5px;
}

.expert-sidebar__details li {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CED7D1;
}

.expert-sidebar__details li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.expert-sidebar__details li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(25, 97, 100, 0.1);
  border-radius: 50%;
  font-size: 18px;
  color: #196164;
}

.expert-sidebar__details li .text {
  margin-left: 15px;
}

.expert-sidebar__details li .team-page {
  padding: 120px 0 90px;
  position: relative;
  z-index: 1;
}

.expert-sidebar__details li .text p {
  font-size: 14px;
  margin: 0;
  color: #5C6663;
}

.expert-sidebar__details li .text h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #15332A;
}

.expert-sidebar__details li .text h5 a {
  color: #196164;
  transition: all 0.3s ease;
  text-decoration: none;
}

.expert-sidebar__details li .text h5 a:hover {
  color: #CFFF45;
}

/* Expert Sidebar Need Help */
.expert-sidebar__need-help {
  position: relative;
  display: block;
  padding: 50px 30px 50px;
  background-color: #196164;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.expert-sidebar__need-help-icon {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 80px;
  background-color: #CFFF45;
  border-radius: 50%;
  color: #15332A;
  font-size: 40px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 25px;
}

.expert-sidebar__need-help-title {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.expert-sidebar__need-help-text {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 30px;
}

.expert-sidebar__need-help-btn a {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  color: #15332A;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 1;
}

.expert-sidebar__need-help-btn a:hover {
  background-color: #CFFF45;
  color: #15332A;
}

.expert-sidebar__need-help-btn a i {
  margin-left: 5px;
  position: relative;
  top: 1px;
}

/* Expert Detail Content */
.expert-detail__content {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.expert-detail__content-top {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.expert-detail__content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #15332A;
}

.expert-detail__content-text {
  font-size: 16px;
  color: #5C6663;
}

.expert-detail__calendar {
  position: relative;
  display: block;
}

/* Styles FullCalendar */
.fc {
  font-family: 'Roboto Condensed', sans-serif;
}

.fc .fc-toolbar-title {
  font-size: 20px;
  font-weight: 700;
  color: #15332A;
}

.fc .fc-button-primary {
  background-color: #196164;
  border-color: #196164;
}

.fc .fc-button-primary:hover {
  background-color: #15332A;
  border-color: #15332A;
}

.fc .fc-event {
  cursor: pointer;
  background-color: #196164;
  border-color: #196164;
  transition: all 0.3s ease;
}

.fc .fc-event:hover {
  background-color: #CFFF45;
  border-color: #CFFF45;
  color: #15332A;
}

.fc .fc-daygrid-day-number {
  color: #15332A;
  font-weight: 500;
}

.fc .fc-col-header-cell-cushion {
  color: #15332A;
  font-weight: 700;
}

/* Styles pour les cartes d'experts (page index) */
.team-one__single {
  position: relative;
  display: block;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.team-one__single:hover {
  transform: translateY(-5px);
}

.expert-card__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.expert-card__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.expert-card:hover .expert-card__img img {
  transform: scale(1.05);
}

.expert-card__content {
  position: relative;
  display: block;
  padding: 25px;
}

.expert-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.expert-card__title a {
  color: #15332A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.expert-card__title a:hover {
  color: #196164;
}

.expert-card__domain {
  font-size: 16px;
  color: #5C6663;
  margin-bottom: 15px;
}

.expert-card__text {
  font-size: 15px;
  color: #5C6663;
  margin-bottom: 20px;
}

.expert-card__btn {
  position: relative;
  display: inline-block;
  background-color: #196164;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.expert-card__btn:hover {
  background-color: #CFFF45;
  color: #15332A;
}

/* Form styles */
.booking-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-form__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #15332A;
}

.booking-form label {
  font-weight: 600;
  color: #15332A;
  margin-bottom: 5px;
}

.booking-form .form-control {
  height: 50px;
  border: 1px solid #CED7D1;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  color: #5C6663;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: #196164;
  box-shadow: none;
}

.booking-form textarea.form-control {
  height: 150px;
  resize: none;
  padding-top: 15px;
}

.booking-form__btn {
  display: inline-block;
  background-color: #196164;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.booking-form__btn:hover {
  background-color: #CFFF45;
  color: #15332A;
}
