:root {
  --container-max-width: 1200px;
  --coffee: #785234;
  --honolulu-blue: #0278B6;
  --carolina-blue: #8DB7D9;
  --oxford-blue: #071A2D;
  --peach-yellow: #FDE1A2;
  --white: #FFFFFF;

  --coffee-50: rgba(85, 57, 38, 0.5);
  --honolulu-blue-50: rgba(2, 120, 182, 0.5);
  --carolina-blue-50: rgba(141, 183, 217, 0.5);
  --oxford-blue-50: rgba(7, 26, 45, 0.5);
  --peach-yellow-50: rgba(253, 225, 162, 0.5);

  --coffee-75: rgba(85, 57, 38, 0.75);
  --honolulu-blue-75: rgba(2, 120, 182, 0.75);
  --carolina-blue-75: rgba(141, 183, 217, 0.75);
  --oxford-blue-75: rgba(7, 26, 45, 0.75);
  --peach-yellow-75: rgba(253, 225, 162, 0.75);

}

html,
body {
  height: 100%;
  margin: 0;
  user-select: none;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
  color: #222;
  background: #fafafa;
}

.page-header {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 12px 16px;
}

main {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 16px 16px;
}

.map {
  height: 70vh;
  min-height: 320px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Hartă pe tot ecranul */
.page-header {
  display: none;
}

main {
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
}

/* Grid 2x2 pe tot ecranul */
.maps-grid {
  position: fixed;
  top: 0;
  right: 25%;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.info {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 25%;
  background-color: #000;
}

.map {
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
}

.cluster-icon {
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cluster-icon .cluster-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cluster-icon .cluster-count {
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
}

.garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.garamond-bold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.yatra {
  font-family: "Yatra One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.text-peach {
  color: var(--peach-yellow);
}

a.text-peach:hover {
  color: var(--oxford-blue);
  text-shadow: 0px 0px 5px var(--peach-yellow);
}

.text-coffee {
  color: var(--coffee);
}

.text-blue {
  color: var(--honolulu-blue);
}

.text-gray {
  color: var(--carolina-blue);
}

.shadow-peach {
  text-shadow: 0px 0px 5px var(--peach-yellow);
}

.shadow-coffee {
  text-shadow: 0px 0px 5px var(--coffee);
}

.shadow-blue {
  text-shadow: 0px 0px 5px var(--honolulu-blue);
}

.shadow-gray {
  text-shadow: 0px 0px 5px var(--carolina-blue);
}

.shadow-black {
  text-shadow: 0px 0px 5px var(--oxford-blue);
}

.shadow-white {
  text-shadow: 0px 0px 5px var(--white);
}

.bg-peach {
  background-color: var(--peach-yellow);
}

.bg-coffee {
  background-color: var(--coffee);
}

.bg-blue {
  background-color: var(--honolulu-blue);
}

.bg-gray {
  background-color: var(--carolina-blue);
}

.bg-peach-50 {
  background-color: var(--peach-yellow-50);
}

.bg-coffee-50 {
  background-color: var(--coffee-50);
}

.bg-blue-50 {
  background-color: var(--honolulu-blue-50);
}

.bg-gray-50 {
  background-color: var(--carolina-blue-50);
}

.bg-peach-75 {
  background-color: var(--peach-yellow-75);
}

.bg-coffee-75 {
  background-color: var(--coffee-75);
}

.bg-blue-75 {
  background-color: var(--honolulu-blue-75);
}

.bg-gray-75 {
  background-color: var(--carolina-blue-75);
}

.btn-peach {
  background-color: var(--peach-yellow);
  color: var(--coffee);
}

.btn-peach:hover {
  background-color: var(--coffee);
  color: var(--peach-yellow);
}

.btn-peach:active {
  background-color: var(--coffee);
  color: var(--peach-yellow);
}

.gradient-blue {
  background: linear-gradient(0deg,
      var(--honolulu-blue),
      var(--carolina-blue));
}

.gradient-black {
  background: linear-gradient(0deg, var(--honolulu-blue), var(--oxford-blue));
}

.gradient-coffee {
  background: linear-gradient(0deg,
      var(--coffee),
      var(--peach-yellow));
}

.gradient-blue-50 {
  background: linear-gradient(0deg, var(--honolulu-blue-50), var(--carolina-blue-50));
}

.gradient-black-50 {
  background: linear-gradient(0deg, var(--honolulu-blue-50), var(--oxford-blue-50));
}

.gradient-coffee-50 {
  background: linear-gradient(0deg, var(--coffee-50), var(--peach-yellow-50));
}

.gradient-peach-50 {
  background: linear-gradient(0deg, var(--peach-yellow-50), var(--coffee-50));
}

.gradient-blue-75 {
  background: linear-gradient(0deg, var(--honolulu-blue-75), var(--carolina-blue-75));
}

.gradient-black-75 {
  background: linear-gradient(0deg, var(--honolulu-blue-75), var(--oxford-blue-75));
}

.gradient-coffee-75 {
  background: linear-gradient(0deg, var(--coffee-75), var(--peach-yellow-75));
}

.gradient-peach-75 {
  background: linear-gradient(0deg, var(--peach-yellow-75), var(--coffee-75));
}

.gradient-peach {
  background: linear-gradient(0deg, var(--peach-yellow), var(--coffee));
}

.gradient-blue {
  background: linear-gradient(0deg, var(--honolulu-blue), var(--carolina-blue));
}

.gradient-black {
  background: linear-gradient(0deg, var(--honolulu-blue), var(--oxford-blue));
}

.gradient-coffee {
  background: linear-gradient(0deg, var(--coffee), var(--peach-yellow));
}

.germania {
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
  line-height: 1
}

.border16x9 {
  background-image: url('/images/border.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.indent {
  text-indent: 2em;
}


.btn-round {
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.btn-round:hover {
  transform: translateY(-2px);
}

.btn-round-peach {
  background: linear-gradient(135deg, var(--peach-yellow), var(--coffee));
  color: var(--coffee);

}

.btn-round-peach:hover {
  background: linear-gradient(135deg, var(--coffee), var(--peach-yellow));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--oxford-blue);
}

.btn-round-blue {
  background: linear-gradient(135deg, var(--honolulu-blue), var(--oxford-blue));
  color: var(--peach-yellow);
}
.btn-round-blue:hover {
  background: linear-gradient(135deg, var(--oxford-blue), var(--honolulu-blue));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--peach-yellow);
}


.clue {
  --bs-tooltip-bg: var(--peach-yellow);
  --bs-tooltip-color: var(--oxford-blue);
  --bs-tooltip-font-size: 1.29375rem;
  font-family: "EB Garamond", serif;
  font-weight: 800;
  font-style: normal;
}

.cursor-pointer {
  cursor: pointer;
}

.gameplay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#streetview-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

btn-close-coffee {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%) var(--coffee);
}

.zi-10 {
  z-index: 10;
}
.zi-11 {
  z-index: 11;
}
.hp-20 {
  height: 20px;
  font-size: 14px;
}