/* Simple responsive workshop images */
.workshop-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.workshop-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Mobile: Show carousel */
@media (max-width: 1023px) {
  .workshop-images {
    display: none;
  }
  
  .workshop-carousel {
    display: block !important;
  }
}

/* Desktop: Hide carousel, show grid */
@media (min-width: 1024px) {
  .workshop-carousel {
    display: none !important;
  }
  
  .workshop-images {
    display: grid;
  }
}

.workshop-carousel {
  margin-top: 15px;
}

.workshop-carousel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Owl carousel dots styling for mobile */
.workshop-carousel.owl-carousel {
  position: relative;
  text-align: center;
}

.workshop-carousel .owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  margin-top: 12px;
  text-align: center;
  width: 100% !important;
  padding: 0 !important;
  flex-wrap: wrap;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

.workshop-carousel .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #999 !important;
  border-radius: 50%;
  display: inline-flex !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none !important;
  padding: 0 !important;
  margin: 0 4px !important;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.workshop-carousel .owl-dot.active {
  background-color: #F15AA8 !important;
  transform: scale(1.2);
  opacity: 1;
}

.workshop-carousel .owl-dot:hover {
  background-color: #666 !important;
  opacity: 1;
}

/* Hide nav buttons */
.workshop-carousel .owl-nav {
  display: none !important;
}

/* Remove focus border from dropdown buttons */
#lmdp-mobile-button-inscrire,
#lmdp-mobile-button-register {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

#lmdp-mobile-button-inscrire:focus,
#lmdp-mobile-button-register:focus,
#lmdp-mobile-button-inscrire:active,
#lmdp-mobile-button-register:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* FAQ Section Styling */
.lmdp-faq-section {
  margin-top: 40px;
}

.lmdp-faq-heading {
  font-size: inherit;
  font-weight: inherit;
  margin-bottom: 40px;
  text-align: center;
}

.lmdp-faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  border-left: 4px solid #F15AA8;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lmdp-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.lmdp-faq-item h3 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
}

.lmdp-faq-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-height: 4.8em !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease !important;
}

.lmdp-faq-item p.expanded {
  max-height: none !important;
  overflow: visible !important;
}

.lmdp-faq-item .read-more-btn {
  display: block !important;
  color: #F15AA8 !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.6 !important;
}

.lmdp-faq-item .read-more-btn:hover {
  text-decoration: underline !important;
  background: transparent !important;
}

.lmdp-faq-item .read-more-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .lmdp-faq-item {
    margin-bottom: 15px;
    padding: 15px;
  }
  
  .lmdp-faq-heading {
    font-size: 24px;
  }
  
  .lmdp-faq-item h3 {
    font-size: 14px;
  }
  
  .lmdp-faq-item p {
    font-size: 13px;
  }
}

/* ====== COLLABORATIONS SECTION STYLING ====== */
.lmdp-collaborations-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 60px 0;
  border-top: 2px solid #ededed;
  margin-top: 40px;
}

.lmdp-collaborations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lmdp-collaborations-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.lmdp-collaborations-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #F15AA8, #2a8fa3);
  border-radius: 2px;
}

/* Collaborations Row - Organizer and Partners */
.lmdp-collaborations-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
}

.lmdp-collaborations-row .lmdp-collab-card {
  flex: 1;
  min-width: 0;
}

.lmdp-collab-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lmdp-collab-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.lmdp-collab-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.lmdp-collab-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.lmdp-collab-logo img {
  max-width: 85% !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
  width: auto !important;
}

.lmdp-collab-card:hover .lmdp-collab-logo img {
  transform: scale(1.05) !important;
}

/* Desktop only - reduce logo size on web */
@media (min-width: 993px) {
  .lmdp-collaborations-row .lmdp-collab-card .lmdp-collab-logo img {
    max-width: 20% !important;
    width: auto !important;
  }
}

/* Sponsors Section */
.lmdp-sponsors-section {
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lmdp-sponsors-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 35px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.lmdp-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px;
}

.lmdp-sponsor-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.lmdp-sponsor-item:hover {
  background: #f0f0f0;
  border-color: #F15AA8;
  transform: scale(1.05);
}

.lmdp-sponsor-item img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
  max-height: 100px;
}

.lmdp-sponsor-item:first-child img {
  max-height: 140px;
}

/* ====== MOBILE RESPONSIVE - COLLABORATIONS ====== */
@media (max-width: 992px) {
  .lmdp-collaborations-section {
    padding: 40px 0;
    margin-top: 30px;
  }

  .lmdp-collaborations-container {
    padding: 0 15px;
  }

  .lmdp-collaborations-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .lmdp-collaborations-row {
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .lmdp-collaborations-row .lmdp-collab-card {
    flex: 1;
    min-width: 0;
    padding: 20px;
  }

  .lmdp-collab-card {
    padding: 30px;
  }

  .lmdp-collab-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .lmdp-collab-logo {
    min-height: 100px;
  }

  .lmdp-collab-logo img {
    max-width: 70% !important;
  }

  .lmdp-sponsors-section {
    padding: 30px;
    margin-top: 40px;
  }

  .lmdp-sponsors-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .lmdp-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
  }

  .lmdp-sponsor-item {
    min-height: 120px;
    padding: 15px;
  }

  .lmdp-sponsor-item img {
    max-height: 80px;
  }
}

/* ====== SMALL MOBILE - COLLABORATIONS ====== */
@media (max-width: 576px) {
  .lmdp-collaborations-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .lmdp-collaborations-row {
    gap: 15px;
    padding: 0 5px;
    margin-bottom: 30px;
  }

  .lmdp-collab-card {
    padding: 20px;
  }

  .lmdp-collab-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .lmdp-collab-logo {
    min-height: 80px;
  }

  .lmdp-sponsors-section {
    padding: 20px;
    margin-top: 30px;
  }

  .lmdp-sponsors-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .lmdp-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 5px;
  }

  .lmdp-sponsor-item {
    min-height: 100px;
    padding: 10px;
  }

  .lmdp-sponsor-item img {
    max-height: 70px;
  }
}
