* {
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  background: #000;

  overflow: hidden;
}

body {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}
.arrow {
  position: relative;

  width: 18px;
  height: 18px;

  display: block;
}

/* diagonal line */
.arrow::before {
  content: "";

  position: absolute;

  width: 19px;
  height: 2px;

  background: currentColor;

  top: 9px;
  left: 0;

  transform: rotate(-45deg);

  transform-origin: center;
}

/* arrow head */
.arrow::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;

  top: 1px;
  right: 0;
}

/* =========================================================
   PAGE
   ========================================================= */

.venue-page {
  position: relative;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  background: #000;
}


/* =========================================================
   NAVIGATION
   ========================================================= */



/* =========================================================
   VENUE CONTENT
   ========================================================= */

.venue-content {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4%;
  gap: 2%;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.venue-copy {
  position: relative;
  width: 31%;
  height: 100%;
  z-index: 5;
  padding-left: 0.2%;
  padding-top: 4.1%;
    margin: 10px 65px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* add this */
  gap: 20px;
}


/* =========================================================
   FIND YOUR WAY
   ========================================================= */

.eyebrow {
  margin: 0;

  margin-top: 0;

  color: var(--white);

  font-size: clamp(15px, 1.75vw, 27px);

  font-weight: 500;

  letter-spacing: 0.22em;

  line-height: 1.1;
}

/* =========================================================
   LOCATION TITLE
   ========================================================= */

.venue-copy h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(44px, 5.5vw, 82px);   /* was probably too large — dial this down */
  line-height: 1.0;
}

.directions-button {
  width: 27vw;
  max-width: 440px;
  min-width: 300px;
  height: 9%;
  min-height: 62px;
  max-height: 84px;
  border: 2px solid var(--green);
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3.2vw;
  padding-right: 2.3vw;
  font-size: clamp(13px, 1.35vw, 21px);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 0;
  position: static;
}

.directions-button:hover {
  background: var(--green);
  color: #000;
}

.directions-button .arrow {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  font-weight: 400;
}


/* =========================================================
   MAP AREA
   ========================================================= */

.venue-map {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  margin: 100px 60px 0 auto;
  /* NO transform */
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}


/* =========================================================
   MAP IMAGE
   ========================================================= */

.venue-map > img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;
}


/* =========================================================
   DARK MAP OVERLAY
   ========================================================= */




/* =========================================================
   VENUE MARKER
   ========================================================= */

.venue-marker {
  position: absolute;

  left: 58%;

  top: 35%;

  transform: translate(-50%, -50%);

  z-index: 5;

  display: flex;

  flex-direction: column;

  align-items: center;
}


/* =========================================================
   MAP PIN
   ========================================================= */

.pin {
  position: relative;

  width: clamp(45px, 5vw, 76px);

  height: clamp(58px, 6.3vw, 94px);

  background: var(--green);

  border-radius:
    50%
    50%
    50%
    0;

  transform: rotate(-45deg);

  display: flex;

  align-items: center;

  justify-content: center;

  filter:
    drop-shadow(
      0 0 12px rgba(115, 248, 2, 0.35)
    );
}

.pin-hole {
  width: 32%;

  height: 32%;

  background: #000;

  border-radius: 50%;
}


/* =========================================================
   VENUE LABEL
   ========================================================= */

.venue-label {
  margin-top: 12px;

  color: var(--green);

  font-size: clamp(13px, 1.45vw, 22px);

  font-weight: 700;

  letter-spacing: -0.02em;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-height: 800px) {

  .venue-copy {
    padding-top: 4%;
  }

  .venue-copy h1 {
    font-size: clamp(44px, 6vw, 88px);
  }

  .directions-button {
    top: 54%;

    height: 70px;
  }
}


@media (max-width: 900px) {


  .venue-copy {
    width: 36%;
  }

  .venue-map {
    width: 64%;
  }

  .venue-copy h1 {
    font-size: clamp(38px, 7vw, 72px);
  }

  .directions-button {
    width: 30vw;

    min-width: 230px;
  }
}

@media (max-width: 600px) {

  .venue-page {
  overflow-y: auto;
  scrollbar-gutter: stable;
  height: auto;
  min-height: 100vh;
}

  /* Stack copy above map instead of side-by-side */
  .venue-content {
    position: relative;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 6% 50px;
    gap: 30px;
  }
  

  .venue-copy {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    gap: 14px;
  }
  

  .venue-copy h1 {
    font-size: clamp(36px, 12vw, 60px);
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .directions-button {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 58px;
    min-height: 0;
    padding-left: 24px;
    padding-right: 18px;
  }

  .venue-map {
    width: 100%;
    max-width: none;
    height: 300px;
    margin: 0;
  }
}
