h1,h2 {
  font-family: "Turret Road",sans-serif;
}

body {
  margin:0;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding:0
}

.footer-all {
  background-color:gainsboro;
  height: 70px;
  display:flex;
  justify-content: space-around;
}

.footer-all p {
  color: gray;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 999;
    height: 90px;
}

p {
  font-family: "Turret Road XLight",sans-serif;
}

.p1 {
    color: black;
    z-index: 100;
    opacity: 0;
}

.h2-1 {
  color: white;
  margin-top:0;
  margin-bottom:0;
  z-index: 100;
  opacity: 1;
}

.h2-2 {
  color: black;
}

.bungee-shade-regular {
  font-family: "Bungee Shade", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bungee {
  font-family: "Bungee Shade", sans-serif;
  color: black;         /* Your stroke color */
}

.head-bar {
    padding-top:5px;
    text-align: center;
    border-bottom: 2px solid black; /* Optional: adds a bottom border */
    z-index: 999; /* Ensure it stays above other content */
}

.menu {
  position: absolute;
  top: 27px;
  left: 70px;
}

.menu-button {
  border-color: transparent;
  background-color: transparent;
}

.menu:hover .dropdown-content{
  display:block
}

.dropdown-content {
  display: none;
  position: relative;
  top: 13px;
  background-color: white;
  width: 200px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 20px 16px;
  text-decoration: none;
  display: block;
  font-family: "Turret-Road", sans-serif;
}

.dropdown-content a:hover {
  background-color:gray;
  color: white;
}

.sunset {
  max-width: 100%;
  height: auto;
  opacity:1;
  transition: 0.5s ease;
  margin: 0;
  object-fit: cover;
  border: 0;
  display: block;
}

.body-div-1:hover .sunset {
  opacity:0.3;
}

.sunset-text {
  position: absolute;
  top: 30vh;
  padding-left: 10%;
  transition: 0.5s ease;
}

.body-div-1 {
  text-align:left;
  margin:0;
  height: auto;
  float: left;
  clear: both;
  position:relative;;
}

.body-div-1:hover .h2-1,.body-div-1:hover .p1 {
  opacity:1;
  color: black;
}

.body-div-2 {
    text-align:center;
    padding-top:10vh;
    padding-bottom:32vh;
    margin:0;
    width: 100%;
    float: left;
    clear: both;
}

.body-div-3 {
  padding-top:12vh;
  padding-bottom: 12vh;
  padding-right:50px;
  padding-left:30px;
  margin:0;
  background-color:white;
  justify-content:space-around;
  display: flex;
}

.body-div-4 {
  padding-top:12vh;
  padding-bottom: 12vh;
  padding-right:50px;
  padding-left:30px;
  margin:0;
  background-color:white;
  justify-content:space-around;
  display: flex;
}

.welcome {
    margin-left: 80px;
}

.turret-road-extralight {
  font-family: "Turret Road XLight", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.turret-road-regular {
  font-family: "Turret Road", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Hide scrollbar for IE, Edge and Firefox */
body::-webkit-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Map info window card styles */
.map-infowindow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Turret Road XLight", sans-serif;
  color: #0b0b0b;
}
.map-infowindow .infowindow-thumb {
  width: 64px;
  height: 64px;
  background-color: #f0f0f0;
  border-radius: 6px;
  flex: 0 0 64px;
  background-image: linear-gradient(135deg, #e6f8f6 0%, #dff3f1 100%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-infowindow .infowindow-thumb img.infowindow-img,
.map-infowindow .infowindow-thumb .infowindow-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.infowindow-thumb-placeholder {
  background: linear-gradient(135deg, #f7faf9, #eef7f6);
}
.map-infowindow .infowindow-body {
  flex: 1 1 auto;
  min-width: 0; /* allow text truncation */
}
.map-infowindow .infowindow-title {
  margin: 0 0 4px 0;
  font-size: 16px;
  line-height: 1.1;
  color: #094f4a;
  font-weight: 600;
}
.map-infowindow .infowindow-address {
  margin: 0;
  font-size: 13px;
  color: #333;
  opacity: 0.9;
}

/* Make the info window content wrap nicely on small screens */
@media (max-width: 420px) {
  .map-infowindow { gap: 8px; }
  .map-infowindow .infowindow-thumb { width: 52px; height: 52px; flex: 0 0 52px; }
  .map-infowindow .infowindow-title { font-size: 14px; }
  .map-infowindow .infowindow-address { font-size: 12px; }
}

.infowindow-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.infowindow-btn {
  border: 0;
  background: #0c7c72;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}
.infowindow-btn.btn-open {
  background: transparent;
  color: #0c7c72;
  border: 1px solid #0c7c72;
}
.infowindow-btn:focus {
  outline: 2px solid rgba(12,124,114,0.2);
}

/* Side info panel */
.info-panel {
  position: fixed;
  right: 0;
  top: 90px; /* below header */
  bottom: 0;
  width: 340px;
  max-width: 100%;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  padding: 16px 12px;
  transform: translateX(100%);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1);
  overflow-y: auto;
}
.info-panel.open {
  transform: translateX(0);
}
.info-panel-close {
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.info-panel-content {
  display: flex;
  gap: 12px;
}
.info-panel-media { flex: 0 0 110px; }
.info-panel-img { width: 110px; height: 110px; object-fit: cover; border-radius: 6px; display:block }
.info-panel-body { flex: 1 1 auto; }
.travel-mode-select { width: 100%; margin-top: 8px; padding: 6px; border-radius: 6px; border: 1px solid #ddd; }
.info-panel-actions { margin-top: 8px; display:flex; gap:8px }
 .origin-input { width: 100%; padding: 8px; border-radius: 6px; border: 1px solid #ddd; margin-top: 8px; }

@media (max-width: 720px) {
  /* On small screens make it bottom-sheet style */
  .info-panel { right: 12px; left: 12px; top: auto; bottom: 12px; width: auto; transform: translateY(110%); border-left: none; border-radius: 8px; }
  .info-panel.open { transform: translateY(0); }
  .info-panel-content { flex-direction: row; }
}

/* When the panel is open, shrink the map so the panel doesn't cover it. Uses !important to override inline map sizing. */
body.panel-open #map {
  width: calc(100% - 340px) !important;
  margin-right: 340px !important;
}

.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }