/**
 * Map 1 Section - Simple Map (1 marker)
 *
 * @package Dioqa_UI_Kit
 */

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

.map-1-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-1-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 {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Adresse sous la map */
.map-address {
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  margin: 0;
}

.map-address i {
  color: var(--bs-primary);
  margin-right: 0.5rem;
}

/* Info Window Custom Styles (via Google Maps) */
.gm-style .gm-style-iw-c {
  padding: 1rem;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

.gm-style-iw-t::after {
  background: var(--bs-primary);
}

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

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

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