body,
html,
#map {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: url("../images/eclipse_banner.jpg") repeat-y top center;
  background-size: cover;
}

.leaflet-control-layers label,
.leaflet-control-layers input[type=radio] {
  cursor: pointer;
}
.leaflet-control-layers label:hover,
.leaflet-control-layers input[type=radio]:hover {
  color: #0085a1;
}
.leaflet-control-layers input[type=radio]:checked,
.leaflet-control-layers input[type=checkbox]:checked {
  accent-color: #0085a1;
}

.button, .about-button, .reset-map-button {
  background-color: white;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s;
  padding: 0;
  border: none;
}
.button i, .about-button i, .reset-map-button i {
  font-size: 16px;
  font-weight: bold;
}
.button:hover, .about-button:hover, .reset-map-button:hover {
  background-color: #e0e0e0;
}

.reset-map-button {
  background-color: #008a51;
  color: white;
  padding: 6px;
  font-size: 16px;
}
.reset-map-button i {
  font-size: 20px;
  color: white;
}
.reset-map-button:hover {
  background-color: #005f73;
}

.about-button {
  background-color: white;
}
.about-button a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.about-button i {
  color: #0085a1;
}
.about-button:hover {
  background-color: #005f73;
}
.about-button:hover i {
  color: white;
}

.tour-restart-button {
  background-color: #008a51;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s, transform 0.3s;
}
.tour-restart-button i {
  font-size: 16px;
  color: white;
  margin-right: 5px;
}
.tour-restart-button:hover {
  background-color: #005f73;
  color: white;
  transform: scale(1.2);
}

#map-legend {
  display: none;
}

.custom-legend {
  background-color: white;
  font-size: 12px;
  padding: 10px 10px 0;
  border: 4px solid #ffd700;
  border-radius: 5px;
  color: #333333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}
.custom-legend .custom-legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  vertical-align: middle;
}
.custom-legend .custom-legend-icon {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}
.custom-legend .custom-legend-text {
  margin-right: 8px;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
}
.custom-legend .custom-legend-line {
  flex-grow: 1;
  height: 12px;
  margin-left: 0;
}

.legend-popup {
  position: absolute;
  top: 10px;
  left: 50px;
  max-width: 125px;
  z-index: 1000;
}

.hidden {
  display: none;
}

#route-legend {
  margin: 0 auto;
  max-width: 150px;
}

@media (max-width: 768px) {
  .custom-legend {
    font-size: 10px;
  }
}
@media (orientation: landscape) and (max-width: 1024px) {
  #map-legend {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
  }
}
.school-icon {
  color: #ffb400;
}

.home-icon {
  color: #ff5733;
}

.globe-icon {
  color: #008a51;
}

.location-icon-stack {
  color: #ff8c00;
}

.activity-icon-stack .fa-circle, .activity-icon-stack {
  color: #0085a1;
  transition: transform 0.3s, color 0.3s;
}
.activity-icon-stack .fa-circle:hover .fa-circle, .activity-icon-stack:hover .fa-circle {
  transform: scale(1.2);
  color: #005f73;
}
.activity-icon-stack .fa-stack-1x {
  font-size: 0.8em;
}

.custom-cluster {
  background-color: #0085a1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition: transform 0.3s, color 0.3s;
}
.custom-cluster:hover {
  background-color: #005f73;
  transform: scale(1.2);
}

.hover-tooltip-content {
  text-align: center;
}

.leaflet-popup-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.2;
  padding: 10px;
}

.leaflet-popup-content-wrapper {
  background-color: #f9f9f9;
  border: 3px solid #008a51;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  overflow-y: auto;
  max-height: 80vh;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.leaflet-popup-tip {
  background-color: #008a51;
}

.leaflet-popup-close-button {
  top: -15px !important;
  right: -15px !important;
  color: white !important;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  z-index: 1000;
}
.leaflet-popup-close-button:hover {
  color: black !important;
}

h4 {
  color: #ff8c00;
}

.popup-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #008a51;
}

.popup-content p {
  font-size: 13px;
  color: black;
}

.carousel-container {
  width: 300px;
  max-width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #333333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}
.carousel-container .carousel-photo,
.carousel-container .carousel-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel-container .carousel-controls {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.carousel-container .carousel-controls span {
  margin: 0 10px;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}
.carousel-container .carousel-controls span:hover {
  transform: scale(1.2);
  color: #0085a1;
}

.carousel-container.fullscreen {
  width: 100vw;
  height: 100vh;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-container.fullscreen .carousel-photo,
.carousel-container.fullscreen .carousel-video {
  aspect-ratio: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
}

.zoom-button {
  background-color: #008a51;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s, transform 0.3s;
}
.zoom-button i {
  font-size: 14px;
}
.zoom-button:hover {
  background-color: #005f73;
  transform: scale(1.2);
}
.zoom-button:active {
  transform: scale(0.95);
}

.disabled-gray {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(80%);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  animation: fadeIn 0.3s ease-in-out;
}
.modal .modal-content {
  background-color: rgba(249, 249, 249, 0.8);
  padding: 20px;
  border: 3px solid #008a51;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  text-align: center;
  max-width: 600px;
  width: 80%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1001;
  position: relative;
}
.modal .modal-content .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal-content .close-button:hover,
.modal .modal-content .close-button:focus {
  color: black;
  text-decoration: none;
}
.modal .modal-content .modal-header {
  position: relative;
  text-align: center;
}
.modal .modal-content .modal-header h1 {
  font-size: 2rem;
  color: #008a51;
  margin: 0;
}
.modal .modal-content .modal-header h2 {
  font-size: 1.2rem;
  color: #333333;
}
.modal .modal-content .modal-header .modal-icon {
  font-size: 3rem;
  color: #008a51;
  margin-bottom: 10px;
}
.modal .modal-content #modal-body {
  font-size: 1rem;
  color: #333333;
  line-height: 1.2;
}
.modal .modal-content #modal-body .modal-transition {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.modal .modal-content #modal-body .modal-body-icon {
  font-size: 1.5rem;
}
.modal .modal-content #modal-body .fa-stack {
  margin-bottom: 0px;
}
.modal .modal-content #modal-body .fa-stack .earth-ocean {
  color: #009dc4;
}
.modal .modal-content #modal-body p {
  margin-bottom: 15px;
}
.modal .modal-content #modal-body #modal-text {
  margin-top: 0px;
  font-size: 0.8em;
  font-style: italic;
  color: #495057;
}
.modal .modal-content .modal-footer {
  font-size: 0.9rem;
  color: #0085a1;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.modal .modal-content .modal-footer p {
  margin: 0;
}

.modal-image {
  max-width: 50%;
  max-height: 100vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid #008a51;
  border-radius: 5px;
}

#aboutModal a,
#aboutModal a:visited {
  color: #0085a1;
  text-decoration: none;
  transition: color 0.2s;
}

#aboutModal a:hover,
#aboutModal a:focus {
  color: #005f73 !important;
  text-decoration: underline;
}

.site-footer {
  margin-top: 1em;
  padding: 1em 0;
  border-top: 1px solid #333333;
  text-align: center;
  font-size: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

.site-footer .footer-owner {
  color: #333333;
  font-weight: normal;
  font-size: 1em;
  letter-spacing: 0.01em;
}

.site-footer .footer-author {
  font-weight: 700;
  color: #333333;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-icon {
  margin-right: 0.3em;
  vertical-align: middle;
}

.site-footer .portfolio-link {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .linkedin-link {
  color: #0077b5 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .github-link {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
  color: #0085a1 !important;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 0.8em;
    font-size: 0.97em;
    padding: 1.5em 0.5em;
  }
  .site-footer .footer-links {
    flex-direction: column;
    gap: 0.5em;
  }
}
.shepherd-element {
  background-color: #f9f9f9;
  color: #333333;
  border: 3px solid #008a51;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  max-width: 320px;
  animation: fadeInShepherd 0.3s ease-in-out;
  overflow: visible;
}
.shepherd-element .shepherd-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px;
}
.shepherd-element .shepherd-header {
  font-weight: bold;
  color: #008a51;
  font-size: 16px;
  padding: 10px;
  background-color: #f9f9f9;
}
.shepherd-element .shepherd-footer {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 600px) {
  .shepherd-element {
    max-width: 60vw !important;
  }
}
.shepherd-element:not(:has(.shepherd-footer)) .shepherd-text {
  padding-bottom: 15px;
}

.shepherd-element .shepherd-header {
  padding-top: 0px;
}

.shepherd-element .shepherd-arrow:before {
  background: #f9f9f9 !important;
  border-color: #008a51 !important;
}

.shepherd-button {
  background-color: #008a51;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s, transform 0.3s;
}
.shepherd-button:hover {
  background-color: #005f73 !important;
  transform: scale(1.2);
}
.shepherd-button:active {
  transform: scale(0.95);
}

.shepherd-cancel-icon {
  position: absolute;
  top: -15px !important;
  right: -15px !important;
  color: white !important;
  background-color: #008a51;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 18px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s;
}
.shepherd-cancel-icon:hover {
  background-color: #005f73;
  color: white;
}

.shepherd-modal-overlay {
  background: rgba(0, 0, 0, 0.7) !important;
  pointer-events: none !important;
}

@keyframes fadeInShepherd {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
