/* style.css */

/* Mapa */
#map {
    width: 98vw;
    height: 97vh;
    z-index: 0;
}
.leaflet-control-zoom {
    display: none;
}

/* Botons generals */
button {
  background: #777777;
  border-radius: 999px;
  box-shadow: #414141 0 10px 20px -10px;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 5px 15px;
  border: 0;
}

button.active {
  background: orange;
  box-shadow: orange 0 10px 20px -10px;
}

/* Popups Leaflet */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 15px;
    max-width: 700px;
    width: 700px;
    max-height: 85vh;
    overflow: auto;
    box-sizing: border-box;
}

.leaflet-popup-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 0 !important;
    font-family: 'Arial', sans-serif;
    font-size: 28px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    word-wrap: break-word;
    text-align: left;
    width: 100% !important;
    max-width: 650px;
    box-sizing: border-box;
}

.leaflet-popup-content * {
    font-size: 28px !important;
    line-height: 1.6 !important;
}

.leaflet-popup-content h1,
.leaflet-popup-content h3 {
    font-size: 32px !important;
    margin: 8px 0;
    width: 100% !important;
}

.leaflet-popup-content h1 {
  color: #f49f22 !important;
  font-weight: bold !important;
}

.leaflet-popup-content p {
    font-size: 28px !important;
    margin: 6px 0;
    width: 100% !important;
}

/* Opcional: elimina padding del text intern també */
.leaflet-popup-content > div, .leaflet-popup-content > p {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Botó de tancament del popup */
.leaflet-container a.leaflet-popup-close-button {
    position: absolute;
    padding: 8px;
    margin-top: 15px;
    margin-right: 15px;
    background-color: transparent;
    border: none;
    color: #3d3c3c;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: orange;
}

/* Contingut multimedia dins popup */
.leaflet-popup-content img, 
.leaflet-popup-content video {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Botó estilitzat específic */
.button-34 {
  background: #5E5DF0;
  border-radius: 999px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  color: #FFFFFF;
  font-family: Inter, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding: 10px 20px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-34:hover {
  transform: scale(1.05);
  box-shadow: #5E5DF0 0 12px 25px -12px;
}

.leaflet-popup-content span.pregunta-que,
.leaflet-popup-content h1 span.pregunta-que {
  color: #f49f22 !important;
  font-weight: bold !important;
}

.leaflet-popup-content hr.linia-taronja {
  border: 0;
  border-top: 4px solid #f49f22 !important;
  width: calc(100% + 4px);
  margin: -10px 0 10px 0;
  background: none;
}

span.pregunta-que {
  color: #f49f22 !important;
  font-weight: bold !important;
}
