body {
  margin: 0;
  background-color: black;
  padding-bottom: 90px;
}

/* IMAGE CONTAINER */

.map-container {
  position: relative;
  width: 1300px;
  margin: auto;
}

/* MAIN IMAGE */

.map-image {
  width: 100%;
  display: block;
  border: 4px solid #c7ff66;
}

/* BUTTONS */

.map-button {
  position: absolute;

  width: 120px;
  height: 50px;

  background-color: rgba(0,0,0,0.8);

  border: 3px solid #c7ff66;

  color: white;
  z-index: 10;

  text-decoration: none;

  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: bold;

  transition: 0.2s;
  
}

/* HOVER EFFECT */

.map-button:hover {
  box-shadow: 0 0 20px yellow;
}


/* POSITIONS */

.button1 {
  top: 150px;
  left: 250px;
}

.button2 {
  top: 800px;
  left: 200px;
}

.button3 {
  top: 500px;
  left: 560px;
}

.button4 {
  top: 550px;
  left: 75px;
}

.button5 {
  top: 850px;
  left: 1100px;
}

/* SPLIT PAGE */

.split-container {
  width: 100vw;
  height: 100vh;

  display: flex;

  overflow: hidden;
}

/* BUTTON AREAS */

.split-button {
  position: relative;

  width: 50%;
  height: 100%;

  overflow: hidden;

  text-decoration: none;

  transition: 0.25s;

  border: 4px solid #c7ff66;

  box-sizing: border-box;
}

/* IMAGES */

.split-button img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.25s;

  display: block;
}

/* LABELS */

.label {
  position: absolute;

  bottom: 90px;
  left: 30px;

  background-color: rgba(0,0,0,0.8);

  color: white;

  padding: 12px 20px;

  border: 3px solid #c7ff66;

  font-size: 28px;
  font-weight: bold;
}

/* HOVER EFFECTS */

.split-button:hover {
  box-shadow: 0 0 30px yellow;
  z-index: 2;
}

.split-button:hover img {
  transform: scale(1.05);
}

}
/* PAGE LAYOUT */

.detail-page {
  min-height: 100vh;

  background-color: black;
  color: white;

  padding: 30px;

  box-sizing: border-box;
}

/* HEADER */

/*.page-header {*/
/*  margin-bottom: 30px;*/
/*}*/

/*.page-header h1 {*/
/*  font-size: 48px;*/
/*  margin-bottom: 10px;*/
/*}*/

.page-header h2 {
  font-size: 22px;
  font-weight: normal;
  color: #c7ff66;
  padding-bottom: 25px;
}

/* MAIN 3-COLUMN LAYOUT */

.content-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);

  gap: 18px;

  width: 100%;

  box-sizing: border-box;

  min-height: 70vh;
}

.detail-page {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* LEFT TEXT PANEL */

.info-panel {
  border: 3px solid #c7ff66;

  padding: 20px;

  box-sizing: border-box;

  line-height: 1.4;
  font-size: 30px;
  color: white;
}

/* CENTER IMAGE */

.main-image-section {
  position: relative;

  border: 3px solid #c7ff66;

  overflow: hidden;
}

.main-image-section img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* BUTTON OVER IMAGE */

.corner-button {
  position: absolute;

  right: 20px;
  bottom: 20px;

  background-color: rgba(0,0,0,0.8);

  color: white;

  text-decoration: none;

  padding: 14px 20px;

  border: 3px solid #c7ff66;

  font-weight: bold;

  transition: 0.2s;
}

.corner-button:hover {
  box-shadow: 0 0 20px yellow;

  transform: scale(1.05);
}

/* RIGHT SIDE STACK */

.side-gallery {
  display: grid;

  grid-template-rows: 1fr 1fr;

  gap: 20px;
}

.side-gallery img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border: 3px solid #c7ff66;

  display: block;
}

/* CAPTION */

.caption-area {
  margin-top: 30px;

  border-top: 2px solid #c7ff66;

  padding-top: 20px;
  padding-left: 20px;
  color: #cccccc;
}

/* FINAL EXPANSION PAGE */


/* HEADER */

.page-header {
  padding: 20px 30px 0;
}

.page-header h1 {
  color: white;
  margin: 0;
  font-size: 42px;
}

.page-header h2 {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: normal;
}

/* MAIN GRID */

.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 65vh 150px;
  gap: 20px;

  padding: 20px 30px;
}

/* Makes children align in the same grid */

.left-col,
.right-col {
  display: contents;
}

/* LEFT IMAGE */

.main-image {
  grid-column: 1;
  grid-row: 1;

  position: relative;
  overflow: hidden;

  border: 3px solid #999;
}

/* RIGHT IMAGE */

.side-image {
  grid-column: 2;
  grid-row: 1;

  overflow: hidden;

  border: 3px solid #999;
}

/* ALL IMAGES */

.main-image img,
.side-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* UNEXPAND BUTTON */

.unexpand-button {
  position: absolute;

  right: 20px;
  bottom: 20px;

  background: white;
  color: black;

  text-decoration: none;

  padding: 12px 18px;

  border: 3px solid #999;
  border-radius: 8px;

  font-weight: bold;
}

.unexpand-button:hover {
  box-shadow: 0 0 20px yellow;
}

/* LEFT BOTTOM CAPTION */

.caption-box {
  grid-column: 1;
  grid-row: 2;

  background: white;

  border: 3px solid #999;

  padding: 10px;

  box-sizing: border-box;

  font-size: 20px;
}

/* RIGHT BOTTOM INFO BOX */

.info-boxes {
  grid-column: 2;
  grid-row: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: white;

  border: 3px solid #999;

  box-sizing: border-box;
}

/* INFO TEXT COLUMNS */

.labels,
.values {
  padding: 15px;

  font-size: 15px;
}

.values {
  text-align: right;
}

.labels p,
.values p {
  margin: 0 0 12px;
}

/* NAVBAR */

.navbar {
  position: fixed;

  bottom: 0;
  left: 0;

  width: 100vw;
  height: 60px;

  background-color: black;

  display: flex;
  align-items: center;

  padding: 0 15px;

  box-sizing: border-box;

  gap: 12px;

  z-index: 999;
}

/* ICON BUTTONS */

.icon-button {
  width: 40px;
  height: 40px;



  background: none;

  padding: 0;

  overflow: hidden;

  flex-shrink: 0;

  cursor: pointer;
  filter: none;
}

.icon-button img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/*.icon-button:hover {
  box-shadow: 0 0 35px yellow;*/
/*}
*/
/* MUSIC PLAYER */

.music-player {
  flex-grow: 1;

  height: 40px;
  filter: invert(1) hue-rotate(180deg);
}

.main-image,
.side-image,
.caption-box,
.info-boxes {
  border: 3px solid #c7ff66;
}

.caption-box,
.info-boxes {
  background-color: black;
  color: white;
}

.unexpand-button {
  background-color: rgba(0,0,0,0.8);
  color: white;
  border: 3px solid #c7ff66;
}

.unexpand-button:hover {
  box-shadow: 0 0 20px yellow;
}

.values {
  color: #c7ff66;
}

