*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --docHutOrange: #cc5729;
  --ltGreen: #2e7d32;
  --dkGreen: #1b5e20;
  --docSignYellow: #facf41;
  --docSignBG: #196f79;
  --docSignYellowDk: #bb9b31;
  --docSignBGDk: #155c64;
  --hasImg: #ff0000;
  --header-height: 140px /* adjust this if header height changes */;
}

html, body {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
html h3, body h3 {
  margin-left: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  font-size: 2rem;
  border-bottom: solid 3px var(--docSignBG);
}
html p, body p {
  margin: 1rem 1rem;
  line-height: 2rem;
}
html nav#menu, body nav#menu {
  position: fixed;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 20px;
  background-color: var(--docSignBG);
}
html nav#menu .menu-item, body nav#menu .menu-item {
  height: 3rem;
  padding: 5px 5px;
  border-top: solid 3px var(--docSignYellow);
}
html nav#menu .menu-item::before, body nav#menu .menu-item::before {
  font-family: FontAwesome;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 15px;
  color: white;
  background-color: #00BFFF;
  content: "\f6ec";
  border: solid 2px white;
}
html nav#menu .menu-item::after, body nav#menu .menu-item::after {
  font-family: FontAwesome;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 20px;
  color: var(--docSignYellow);
  content: "\f061";
}
html nav#menu .menu-item a, body nav#menu .menu-item a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--docSignYellow);
}
html nav#menu .menu-item a:hover, body nav#menu .menu-item a:hover {
  border-bottom: 2px solid var(--docSignYellow);
}

/* Header spacing */
header#welcome {
  position: relative;
  top: 49px;
  padding: 1rem 1rem;
  margin: 0 0;
  border-top: solid 20px var(--docSignYellow);
  color: var(--docSignYellow);
  background-color: var(--docSignBG);
}
header#welcome h2 {
  padding-bottom: 0.5rem;
}

#sidebarHeader {
  font-family: "Times New Roman", Times, serif;
  margin: 20px 0 0 -20px;
  padding-left: 5%;
  border-top: solid 20px var(--docSignYellow);
  color: var(--docSignYellow);
  background-color: var(--docSignBG);
}

#sidebarHeader > h2 {
  font-size: 2rem;
  margin: 2rem auto 1rem;
  line-height: 1.5rem;
}

#sidebarHeader > h3, header > h3 {
  font-size: 1.2rem;
  font-weight: normal;
  padding-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: black;
}

td {
  padding: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

img {
  display: block;
  max-width: 100%;
}

/* Map container positioning */
#map {
  position: relative;
  top: 50px;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 180px);
  margin-top: 0;
  padding: 0;
  border-top: 2px solid #ccc;
}

.map-blur {
  filter: blur(5px);
}

.leaflet-popup-content-wrapper {
  max-height: 450px;
  border: 2px solid black;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#popUp {
  min-height: 300px;
  max-height: 450px;
  height: auto;
  overflow-y: auto;
  width: 300px;
}
#popUp h4 {
  color: #000;
  border-bottom: solid 2px #000;
}
#popUp p {
  font-size: 12px;
}

#hutInfoPopup {
  border-bottom: 2px solid black;
  margin-bottom: 5px;
  /* Tooltip style for hover */
}

.leaflet-tooltip {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  font-weight: 600;
}

.leaflet-popup-tip {
  border: solid 3px black;
}

.leaflet-popup-content {
  font-size: 2em;
}

/* Sidebar slides down from top, on right side */
#sidebar {
  position: absolute;
  top: -100%;
  right: 0;
  width: 33%;
  height: 100%;
  padding: 20px;
  background: rgba(128, 128, 128, 0.22);
  color: black;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transition: top 0.6s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
}
#sidebar.active {
  top: 0;
  opacity: 1;
  pointer-events: all;
}

#closeSidebar {
  background: var(--docHutOrange);
  color: white;
  border: none;
  margin-right: 40px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

/* Custom marker with shadow */
.custom-marker, .custom-marker-images {
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out;
}

.custom-marker-images i {
  font-size: 18px;
  color: var(--hasImg);
}

.custom-marker:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.custom-marker i {
  font-size: 18px;
  color: green;
}

/* Popup button */
.details-btn {
  background: var(--docSignBG);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 5px;
}

.details-btn:hover {
  background: var(--docSignBGDk);
  /* Search control */
}

#searchContainer {
  position: absolute;
  z-index: 1;
  top: 300px;
  left: 15px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

#searchContainer.active {
  width: 250px;
}

#searchIcon {
  cursor: pointer;
  color: #666;
}

#searchInput {
  border: none;
  outline: none;
  background: transparent;
  flex-grow: 1;
  font-size: 14px;
  width: 180px;
}

#searchContainer.active #searchInput {
  display: block;
}

/* Autocomplete dropdown */
#suggestions {
  position: absolute;
  top: 340px;
  left: 25px;
  z-index: 1201;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  width: 250px;
  max-height: 200px;
  overflow-y: auto;
}

#suggestions div {
  padding: 6px 10px;
  cursor: pointer;
}

#suggestions div:hover {
  background: #eee;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.image-gallery img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

footer {
  position: relative;
  display: block;
  width: 100%;
  margin-top: -10px;
  text-align: center;
  background-color: var(--docSignBG);
  color: var(--docSignYellow);
}

:root {
  --color-bg: hsl(240, 37%, 11%);
  --color-header-bg: hsl(240, 37%, 20%);
  --color-text: hsl(0, 0%, 93%);
  --color-accent: hsl(296, 99%, 42%);
  --color-highlight: hsl(296, 99%, 30%);
}

.rounded {
  border-radius: 16px;
  overflow: hidden;
}

em {
  font-style: normal;
  background: var(--color-highlight);
}

.wrapper {
  width: min(100% - 40px, 68.75rem);
  margin-inline: auto;
}
.wrapper.has-padding {
  padding-block: 40px;
}
@media (width >= 43.75em) {
  .wrapper.has-padding {
    padding-block: 60px;
  }
}

.licorice-regular {
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: 2.25rem;
  font-size: clamp(2.25rem, 1.9090909091rem + 1.4545454545vw, 3rem);
}

h2 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.5227272727rem + 0.9696969697vw, 2.25rem);
}

p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
  line-height: 1.5;
}
p.small {
  font-size: 0.8125rem;
}

a {
  text-decoration: none;
}

p > a {
  color: var(--color-text);
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}
p > a:hover {
  color: var(--color-accent);
}

body > h1 {
  padding-bottom: 2rem;
}

.footer {
  text-align: center;
  padding-block: 14px;
}
@media (width >= 43.75em) {
  .footer {
    padding-block: 20px;
  }
}
.footer p {
  margin: 0;
}

.header {
  padding-block: 14px;
  background: var(--color-header-bg);
}
@media (width >= 43.75em) {
  .header {
    padding-block: 20px;
  }
}
.header__items {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header__item {
  list-style-type: none;
}
.header__item:first-child {
  margin-inline-end: auto;
}
.header__link {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8103448276rem + 0.275862069vw, 1rem);
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 150ms ease-in-out;
}
.header__link:hover {
  color: var(--color-accent);
}

.hero__wrapper {
  display: grid;
  gap: 20px;
}
@media (width >= 43.75em) {
  .hero__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */