/**
 * Map 2 Section - Multiple Markers
 *
 * @package Dioqa_UI_Kit
 */

/* Section Container */
.map-2-section {
  position: relative;
}

.map-2-section .section-title {
  color: var(--bs-gray-dark);
  font-family: var(--font-heading);
  font-size: var(--display-xs);
  font-weight: 700;
  line-height: 1.2;
}

.map-2-section .section-description {
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.6;
}

/* Map Container */
.dioqa-map-multiple {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Liste des markers sous la map */
.markers-list {
  margin-top: 2rem;
}

.markers-list-title {
  color: var(--bs-gray-dark);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Cards de markers */
.marker-card {
  background: var(--bs-white);
  border: 1px solid var(--bs-gray-lighter);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.marker-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: var(--bs-primary);
}

.marker-title {
  color: var(--bs-gray-dark);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.marker-address {
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.marker-address i {
  color: var(--bs-primary);
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.marker-info {
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0;
}

/* Fond sombre */
.map-2-section.bg-primary .markers-list-title,
.map-2-section.bg-dark .markers-list-title,
.map-2-section.text-white .markers-list-title {
  color: var(--bs-white);
}

.map-2-section.bg-primary .marker-card,
.map-2-section.bg-dark .marker-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.map-2-section.bg-primary .marker-card:hover,
.map-2-section.bg-dark .marker-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.map-2-section.text-white .marker-title,
.map-2-section.text-white .marker-address,
.map-2-section.text-white .marker-info {
  color: var(--bs-white);
}

/* Responsive */
@media (max-width: 768px) {
  .dioqa-map-multiple {
    min-height: 300px;
  }

  .map-2-section .section-title {
    font-size: var(--display-2xs);
  }

  .map-2-section .section-description {
    font-size: var(--text-sm);
  }

  .marker-card {
    padding: 1rem;
  }

  .markers-list-title {
    font-size: var(--text-lg);
  }
}
