body {
  margin: 0;
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-optical-sizing: auto;
  background: #DFF3FC;
  min-height: 100vh;
  color: #102a43;
  overflow-x: hidden;
}
.social-button {
  position: relative;
  color: #3388e4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: solid 2px #A7D8FC;
  border-radius: 15px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
}
@media only screen and (min-width: 576px) {
  .header {
    padding-top: 15px;
  }
  .homepage {
    background-image: url("../img/background.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
  }
}
@media only screen and (max-width: 575px) {
  .header {
    padding-top: 45px;
  }
  .homepage {
    background-image: url("../img/background-mobile.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
  }
  #events {
    padding-bottom: 35px;
  }
  #footer {
    background-color: #68b0fd;
    position: fixed;
    bottom: 0px;
    height: 65px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0px;
  }
  .mobile-footer-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 35px;
  }
  .mobile-footer-button a {
    color: white;
    text-decoration: none;
    font-size: 2em;
  }
  .mobile-footer-button a span {
    color: white;
    font-size: 0.4em;
    font-weight: 400;
    position: relative;
    top: -28px;
  }
}
#landingMessage {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 25px;
}
.map-container {
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
svg {
  width: 100%;
  height: auto;
}
/* ---------------- Province styles ---------------- */
.province {
  fill: #cfd8dc;
  stroke: #ffffff;
  stroke-width: 1;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.25s ease, filter 0.25s ease, fill 0.25s ease;
}
.province:hover {
  transform: translateY(-8px) scale(1.04);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.25));
  fill: #90caf9;
}
.province.active {
  fill: #42a5f5;
}
.province[data-disabled="true"] {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}
/* ---------------- Tooltip ---------------- */
.tooltip {
  position: fixed;
  pointer-events: none;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ---------------- Section below map ---------------- */
section {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
/* ---------------- Mobile tweaks ---------------- */
@media (hover: none) {
  .province:hover {
    transform: none;
    filter: none;
  }
  .province:active {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25));
  }
}
iframe {
  border-radius: 25px;
  margin-bottom: 35px;
  border: solid 5px #A7D8FC;
}
