@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html, body {
  margin: 0 auto;
  padding: 0;
  font-family: Argentum Sans;
  font-size: var(--fs-body);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "mobile portrait";
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 4vh;
  background: black;
  color: var(--cream);
  padding: 1vw;
  z-index: 9999;
}

@font-face {
  font-family: "bohologo";
  src: url("font/bohologo-v2.woff2") format("woff2"); /* Super Modern Browsers */
  src: url("font/bohologo-v2.woff") format("woff"), url("font/bohologo-v2.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "dumbledore";
  src: url("font/dum2.woff2") format("woff2"); /* Super Modern Browsers */
  src: url("font/dum2.woff") format("woff"), url("font/dum2.eot") format("embedded-opentype"), url("font/dum2.ttf") format("truetype"); /* Safari, Android, iOS */
}
:root {
  /* BASE (body text) */
  --fs-body: 30px;
  --cream: #F0EAD6;
  --orange: #c14801;
  --purple: #451878;
  --teal: #307877;
  /* Hierarchy */
  --fs-small: 0.6rem; /* captions, fine print */
  --fs-body-lg: 0.8rem; /* normal paragraphs */
  --fs-nav: 0.8rem;
  --fs-navlrg: 1.3rem;
  --fs-menu: 1rem;
  --fs-menulab: 1.3rem;
  --fs-popup: 1rem;
  --fs-headslt: 1.5rem;
  --fs-headsrt: 1.5rem;
  --fs-loctxt: 1.5rem; /* Front page */
  --z-nav: 300;
  --z-menu: 200;
  --z-popup: 1000;
  --star-size: 6vw;
}

p {
  font-size: var(--fs-body-lg);
}

a[href^=mailto] {
  color: black;
  text-decoration: none;
}

a[href^=mailto]:hover {
  color: var(--teal);
}

/* ############ RANDO ##################### */
#star-layer {
  position: fixed; /* covers the whole viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none; /* don’t block clicks */
  overflow: hidden;
  z-index: 5;
}

.floating-star {
  position: absolute;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  animation: fadeScaleRotate 6s forwards;
}

/* Fade in/out + scale + slight rotation */
@keyframes fadeScaleRotate {
  0% {
    opacity: 0;
    transform: scale(0) rotate(var(--start-rot));
  }
  20% {
    opacity: 0.45;
    transform: scale(1) rotate(calc(var(--start-rot) + 10deg));
  }
  80% {
    opacity: 0.45;
    transform: scale(1) rotate(calc(var(--start-rot) + 5deg));
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(var(--start-rot));
  }
}
#starshow {
  font-size: var(--star-size);
}

/* ########### FIXED BANNER #################### */
#nav {
  font-family: "bohologo";
  font-size: var(--fs-nav);
  color: var(--cream);
  text-shadow: 2px 2px 4px #000000;
  width: 100%;
  height: auto;
  max-height: 20vh;
  background-color: var(--teal);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0; /* start hidden */
  pointer-events: none; /* prevent interaction while hidden */
  transition: opacity 0.5s ease-in-out;
  z-index: var(--z-nav);
  padding: 1vh 2vw;
}

.nav-left {
  flex: 1;
  display: grid;
  justify-content: center; /* equal blank space on sides */
}

.lnavlogo {
  padding-left: 2vw;
}

.rnavlogo {
  display: none;
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-center {
  flex: 2; /* center column wider */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1vw;
  line-height: 1;
}

.banlogo {
  height: 13vh; /* responsive logo height */
}

#nav.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger styling */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6vh;
  min-width: 6vh;
  height: 6vh;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger .bar {
  display: block;
  height: 1vh;
  width: 100%;
  background: var(--cream);
  border-radius: 0.5vh;
  transform-origin: center;
  transition: all 0.3s ease;
}

/* Transform hamburger into X */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(0.9vh, 1.4vh);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(0.9vh, -1.4vh);
}

.hamburger .menu-label {
  display: none;
}

.hamburger .bar {
  display: block;
}

.menu {
  position: fixed;
  opacity: 0;
  top: 0;
  right: -80vw; /* hide offscreen initially */
  width: 80vw; /* responsive width */
  height: auto;
  padding-top: 15vh;
  border-bottom-left-radius: 8vh;
  background-color: var(--teal);
  border-left: 10px solid var(--orange);
  border-bottom: 10px solid var(--orange);
  transition: right 0.3s ease;
  z-index: var(--z-menu);
  font-family: "dumbledore";
  font-size: var(--fs-menu);
  display: grid;
  align-items: center;
  justify-content: center;
}

.menu.show {
  opacity: 1;
  pointer-events: auto;
}

.menu-label {
  display: block;
  color: var(--cream);
  text-shadow: 2px 2px 4px #000000;
  font-family: "dumbledore";
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center;
  font-size: var(--fs-menulab);
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 2vh 0;
}

.menu a {
  text-decoration: none;
  color: var(--cream);
}

.menu.open {
  right: 0;
  opacity: 1;
}

#box1,
#box5,
#box7,
#box8,
#box11,
#box13 {
  scroll-margin-top: 15vh;
}

/* ########### LANDING PAGE ############## */
.title {
  width: 100vw;
  height: 100vh;
  background-image: url("images/clouds.png");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "bohologo";
  color: var(--orange);
  text-shadow: 2px 2px 4px #000000;
  align-content: center;
  text-align: center;
}

#titcont {
  background-image: url("images/boholetterback.png");
  display: grid;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  height: 100vh;
}

#titlogo {
  height: 30vh;
}

#loca {
  height: 80vh;
  width: 100vw;
  padding-top: 10vh;
  display: grid;
  grid-template-rows: 50% 50%;
}

.loclog {
  padding-top: 10vh;
  padding-right: 15vw;
  display: flex;
  justify-content: end;
}

.loctxt {
  font-size: var(--fs-loctxt);
  line-height: 1;
  padding: 7vh 3vw 0 30vw;
  text-shadow: 2px 2px 4px var(--cream);
}

/* ***********  dark mode light  mode... white or #988c99 */
.main {
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

/* ###########  INFORMATION POPUPS ########## */
.btn {
  background-color: transparent;
  border: none;
}

.btn:hover {
  transform: scale(1.1);
}

.pophist {
  position: fixed;
  top: 5vh;
  left: 5vw;
  width: 90vw;
  height: 90vh;
  font-size: var(--fs-popup);
  background-color: var(--teal);
  border-radius: 3vw;
  padding: 0 5vw;
  z-index: var(--z-popup);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* hidden state */
  pointer-events: none; /* can't click */
  transition: opacity 0.3s ease;
}

.pophist.open {
  opacity: 1;
  pointer-events: auto;
}

.popup-inner {
  width: 100%;
  height: 100%;
  padding: 0;
  background: inherit;
  border-radius: 3vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

.descr {
  margin-top: -2vh;
}

.close-fixed {
  position: absolute;
  bottom: 2vh;
  left: 25%;
  z-index: 1100;
}

.close-fixed:hover {
  transform: scale(1.1);
}

.popup-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: 16vh;
}

.poph1 {
  background-color: var(--teal);
  border: 10px solid var(--purple);
}

.poph2 {
  background-color: var(--orange);
  border: 10px solid var(--purple);
}

.poph3, .poph13 {
  background-color: var(--teal);
  border: 10px solid var(--orange);
}

.poph4 {
  background-color: var(--purple);
  border: 10px solid var(--orange);
}

.poph5, .poph12 {
  background-color: var(--orange);
  border: 10px solid var(--teal);
}

.poph6, .poph9 {
  background-color: var(--teal);
  border: 10px solid var(--orange);
}

.poph7, .poph10 {
  background-color: var(--purple);
  border: 10px solid var(--orange);
}

.poph8, .poph11 {
  background-color: var(--orange);
  border: 10px solid var(--teal);
}

.fol-btn {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}

.fol-btn .folp {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fol-btn:hover {
  transform: scale(1.03);
  transition: transform 0.2s ease;
}

#headslt {
  font-family: "dumbledore";
  color: var(--cream);
  font-size: var(--fs-headslt);
  text-align: center;
  line-height: 1;
  text-shadow: 2px 2px 4px #68665d;
}

#headsrt {
  font-family: "dumbledore";
  color: var(--teal);
  font-size: var(--fs-headsrt);
  line-height: 1.2;
  text-shadow: 2px 2px 4px #68665d;
}

.butts {
  width: 40vw;
  max-width: 300px;
  height: auto;
}

#imgOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#imgOverlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 2vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* ############## FIRST GRID ############### */
#firsgrid {
  height: auto;
  width: 100vw;
  background-color: var(--cream);
  display: grid;
  grid-template-areas: "box2" "box3" "box1";
  grid-template-rows: auto;
  padding-bottom: 5vh;
}

/* ****** BOX 1 ********** HIST */
#box1 {
  display: grid;
  align-items: center;
  grid-area: box1;
}

.leftdiv {
  width: 100%;
  border-top-right-radius: 8vh;
  border-bottom-right-radius: 8vh;
  padding: 5vh;
  transform: translateX(-100%);
  opacity: 1;
  transition: transform 2s ease-out, opacity 1s ease-out;
}

.lefta {
  background-color: var(--orange);
}

.leftb {
  background-color: var(--purple);
}

.rightdiv {
  width: 100%;
  background-color: var(--teal);
  border-top-left-radius: 8vh;
  border-bottom-left-radius: 8vh;
  padding: 5vh;
  transform: translateX(100%);
  opacity: 1;
  transition: transform 2s ease-out, opacity 1s ease-out;
}

.leftdiv.active {
  transform: translateX(0);
  opacity: 1;
}

.rightdiv.active {
  transform: translateX(0);
  opacity: 1;
}

.popdivs {
  width: 90vw;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ****** BOX 2 ********** HERO */
#box2 {
  grid-area: box2;
  display: grid;
  grid-template-areas: "b2img" "b2text";
  grid-template-rows: auto auto;
}

#in2img {
  grid-area: b2img;
  display: grid;
  place-items: center;
  padding-top: 5vh;
}

#in2text {
  grid-area: b2text;
  padding: 5vh 5vw;
}

#heroimg {
  width: 80vw;
  height: auto;
  border-radius: 10%;
}

/* ****** BOX 3 ********** HOMES */
#box3 {
  grid-area: box3;
  padding: 0 5vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#imgs {
  width: 20vw;
  height: auto;
  border: 10px solid var(--purple);
  border-radius: 3vw;
}

/* ############## SECOND GRID ############### */
#secgrid {
  width: 100vw;
  height: 50vh;
  background-image: url("images/lnge/fol5.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ############## THIRD GRID ############### */
#thdgrid {
  height: auto;
  width: 100vw;
  background-color: var(--orange);
  display: grid;
  grid-template-areas: "box4" "box5" "box6" "box7" "box8" "box9";
  grid-template-rows: repeat(6, auto);
}

/* ****** BOX 4 ********** VID */
#box4 {
  padding-top: 10vh;
  grid-area: box4;
  display: flex;
  flex-direction: column;
  align-items: center; /* THIS is the key */
  text-align: center;
}

#undervid {
  width: 80vw;
  text-align: center;
  margin-top: 2vh;
  margin-bottom: 15vh;
  padding: 5vw 5vh;
  border: 10px solid var(--teal);
  border-radius: 8vh;
  background-color: var(--cream);
  margin-left: auto;
  margin-right: auto;
}

#vidbox {
  width: 100vw;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}

#vid {
  width: 70vw !important;
  height: auto !important;
  border-radius: 4vh;
  overflow: hidden;
}

#vidframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/vidbord.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.player-controls {
  position: absolute; /* overlay on video */
  bottom: -1vh; /* distance from bottom */
  left: 50%; /* center horizontally */
  border-radius: 4vh;
  width: 40vw;
  height: 12vh;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Play button styling */
.play-button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: transform 0.2s ease; /* smooth scale on hover */
  display: inline-block;
}

.play-button:hover {
  transform: scale(1.2); /* scales 30% larger on hover */
}

#playIcon, #soundIcon, #fullscreenIcon {
  width: 12vw;
  height: 10vw;
  display: block;
}

/* ****** BOX 5 ********** APPROACH */
#box5 {
  padding: 0 5vw;
  grid-area: box5;
}

/* ****** BOX 6 ********** WHAT */
#box6 {
  grid-area: box6;
  display: grid;
  align-content: center;
  justify-content: right;
}

/* ****** BOX 7 ********** PORTFOLIO */
#box7 {
  padding: 0 5vw;
  grid-area: box7;
  display: grid;
  align-items: center;
  justify-content: center;
}

.imgbut {
  width: 60vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

.imgbut:hover {
  transform: scale(1.1);
}

#folpics {
  display: grid;
  grid-template-areas: "lnge sbed" "read wclo" "outd cbed";
  grid-template-rows: repeat(3, auto);
  gap: 1vh;
}

.folp {
  width: 30vw;
  height: auto;
}

#lnge {
  grid-area: lnge;
}

#sbed {
  grid-area: sbed;
  display: grid;
  justify-content: right;
}

#read {
  grid-area: read;
}

#wclo {
  grid-area: wclo;
}

#outd {
  grid-area: outd;
}

#cbed {
  grid-area: cbed;
}

/* ####################################
            CAROUSEL
#####################################*/
.carousel {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.carimg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45vw;
  aspect-ratio: 630/788;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.carimg:hover {
  transform: translate(-50%, -50%) scale(1.03);
  cursor: pointer;
}

.cartxt {
  margin-top: 5vh;
  margin-bottom: 5vh;
}

/* ****** BOX 8 ********** WORKS */
#box8 {
  padding: 0 5vw;
  grid-area: box8;
}

/* ****** BOX 9 ********** WHERE */
#box9 {
  padding: 5vh 0;
  grid-area: box9;
}

/* ############## FOURTH GRID ############### */
#fthgrid {
  width: 100vw;
  height: 50vh;
  background-image: url("images/outd/out9.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ############## FIFTH GRID ############### */
#fifgrid {
  height: auto;
  width: 100%;
  background-color: var(--purple);
  display: grid;
  grid-template-areas: "box10" "box11" "box12" "box13" "box14";
  grid-template-rows: repeat(5, auto);
}

/* ****** BOX 10 ********** SERVICES */
#box10 {
  padding: 5vh 5vw;
  grid-area: box10;
}

/* ****** BOX 11 ********** ABOUT */
#box11 {
  padding: 5vh 5vw 5vh 5vw;
  grid-area: box11;
  display: grid;
  grid-template-areas: "ab2text" "ab2img";
  grid-template-rows: auto auto;
}

#abtimg {
  grid-area: ab2img;
  display: grid;
  place-items: center;
}

#abttext {
  grid-area: ab2text;
}

#heroimg {
  width: 80vw;
  height: auto;
}

/* ****** BOX 12 ********** WHY */
#box12 {
  padding: 5vh 0 5vh 10vw;
  grid-area: box12;
}

/* ****** BOX 13 ********** CALL */
#box13 {
  padding: 0 5vw;
  grid-area: box13;
}

#plums {
  width: 60vw;
  height: auto;
}

.conbut {
  transform-origin: center;
  display: block;
  margin: 0 auto;
}

.conbut:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* ****** BOX 14 ********** CALL */
#box14 {
  font-size: var(--fs-small);
  padding: 2vh 2vw;
  grid-area: box14;
  min-height: 5vh;
  background-color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end; /* key change */
  align-items: center;
  gap: 1rem;
}

.footlinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0 2vw;
  text-align: center;
}

.footlinks a {
  color: inherit;
  text-decoration: none;
}

.footlinks a:hover {
  text-decoration: underline;
}

/* =========================
   TABLET PORTRAIT
========================= */
@media (min-width: 768px) and (max-width: 1023px) {
  body::before {
    content: "tablet portrait";
  }
  :root {
    --fs-nav: 1.7rem;
    --fs-loctxt: 2.2rem;
    --star-size: 4vw;
  }
  .banlogo {
    margin-top: 1vh;
    height: 13vh;
  }
  .loclog {
    padding-right: 25vw;
    display: flex;
    justify-content: end;
  }
  .loctxt {
    display: flex;
    padding: 8vh 0 0 25vw;
    justify-content: center;
  }
  .hamburger {
    width: 4vh;
    height: 4vh;
  }
  .hamburger span {
    height: 0.75vh;
    width: 100%;
    border-radius: 0.75vh;
  }
  /* Transform hamburger into X */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0.9vh, 1.4vh);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0.9vh, -1.4vh);
  }
  /* ############## FIRST GRID ############### */
  #firsgrid {
    grid-template-areas: "box1 box2" "box3 box3";
    grid-template-rows: repeat(2, auto);
    overflow-x: hidden;
  }
  .popdivs {
    width: 45vw;
  }
  .butts {
    width: 15vw;
  }
  #box1 {
    padding: 5vh 0;
  }
  #heroimg {
    width: 40vw;
  }
  #in2img {
    padding-top: 10vh;
  }
  #in2text {
    grid-area: b2text;
    padding: 2vh 5vw 0 5vw;
  }
  #box3 {
    padding: 0 10vw 5vh 10vw;
  }
  /* ############## THIRD GRID ############### */
  #thdgrid {
    grid-template-areas: "box4 box4" "box5 box6" "box7 box8" "box9 box8";
    grid-template-rows: repeat(4, auto);
  }
  .imgbut {
    width: 30vw;
    height: auto;
  }
  /* ############## FIFTH GRID ############### */
  #fifgrid {
    grid-template-areas: "box10 box11" "box13 box12" "box14 box14";
    grid-template-rows: repeat(3, auto);
  }
}
/* =========================
   MOBILE LANDSCAPE
========================= */
@media (max-height: 767px) and (orientation: landscape) {
  body::before {
    content: "mobile landscape";
  }
  :root {
    --fs-body: 16px;
    --fs-nav: 1.5rem;
    --star-size: 2vw;
    --fs-body-lg: 1rem;
    --fs-menu: 1.5rem;
  }
  .nav-center {
    flex: 6;
  }
  .banlogo {
    height: 13vh;
  }
  .lnavlogo {
    display: none;
  }
  .rnavlogo {
    display: block;
    padding-right: 5vw;
  }
  .hamburger .bar {
    display: none;
  }
  .hamburger .menu-label {
    display: block;
  }
  .menu-label {
    display: block;
    opacity: 1;
  }
  .menu {
    right: -90vw;
    width: 90vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0; /* IMPORTANT */
    height: 30vh;
    margin-top: 15vh;
  }
  .menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3vw;
  }
  .menu li {
    margin: 0;
  }
  .menu li:last-child {
    margin-right: 0;
  }
  #titlogo {
    height: 50vh;
  }
  #titcont {
    background-image: url("images/bohoback3a.png"), url("images/bohoback3b.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left, right;
    background-size: contain, contain;
  }
  #loca {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 40% 60%;
  }
  .loclog {
    height: 80vh;
    padding-right: 10vw;
    display: flex;
    align-items: center;
  }
  .loctxt {
    --fs-loctxt: 3.2rem;
    height: 80vh;
    padding: 15vh 5vw 0 0;
  }
  /* ############## FIRST GRID ############### */
  #firsgrid {
    grid-template-areas: "box1 box2 box3";
    grid-template-rows: auto;
    overflow-x: hidden;
  }
  .popdivs {
    width: 30vw;
  }
  .butts {
    width: 15vw;
  }
  .close-fixed {
    left: 42%;
  }
  #box1 {
    padding: 5vh 0;
  }
  #heroimg {
    width: 20vw;
  }
  #in2img {
    padding-top: 10vh;
  }
  #in2text {
    grid-area: b2text;
    padding: 2vh 5vw 0 5vw;
  }
  #box3 {
    padding: 0 5vw 0 0;
  }
  /* ############## THIRD GRID ############### */
  #thdgrid {
    grid-template-areas: "box4 box4 box4" "box5 box5 box6" "box7 box8 box8" "box9 box8 box8";
    grid-template-rows: repeat(4, auto);
  }
  .imgbut {
    width: 20vw;
    height: auto;
  }
  /* ############## FOURTH GRID ############### */
  #vidbox {
    width: 70vw;
  }
  #vid {
    width: 50vw !important;
  }
  #vidframe {
    height: 100%;
  }
  .player-controls {
    position: absolute; /* overlay on video */
    bottom: 10vh; /* distance from bottom */
    left: 50%; /* center horizontally */
    border-radius: 4vh;
    width: 30vw;
    height: 12vh;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #playIcon, #soundIcon, #fullscreenIcon {
    width: 8vw;
    height: 6vw;
    display: block;
  }
  #undervid {
    width: 50vw;
  }
  /* ############## FIFTH GRID ############### */
  #fifgrid {
    grid-template-areas: "box10 box11 box11" "box13 box13 box12" "box14 box14 box14";
    grid-template-rows: repeat(3, auto);
  }
  /* ############## SEVENTH GRID ############### */
  #folpics {
    display: grid;
    grid-template-areas: "lnge sbed read wclo outd cbed";
    grid-template-rows: auto;
    gap: 2vh;
    overflow: visible;
  }
  .carousel {
    margin-top: 0;
    flex-direction: row;
    width: 100%;
    height: 80vh !important;
    min-height: 80vh;
    flex: 0 0 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carimg {
    width: 20vw;
    aspect-ratio: 788/630;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #box8 {
    padding-top: 0;
    padding-bottom: 20vh;
  }
  .serv {
    margin-bottom: 5vh;
  }
  #plums {
    width: 40vw;
    height: 40vw;
  }
}
/* =========================
   SMALL LAPTOP
========================= */
@media (min-width: 1024px) {
  body::before {
    content: "small laptop";
  }
  :root {
    --fs-body: 20px;
    --fs-nav: 2rem;
    --fs-loctxt: 4rem;
    --star-size: 2vw;
  }
  .banlogo {
    height: 13vh;
  }
  #titlogo {
    height: 50vh;
  }
  #titcont {
    background-image: url("images/bohoback3a.png"), url("images/bohoback3b.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left, right;
    background-size: contain, contain;
  }
  #loca {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .loclog {
    height: 80vh;
    padding-right: 15vw;
    display: flex;
    align-items: center;
  }
  .loctxt {
    height: 80vh;
    padding: 25vh 10vw 0 0;
  }
  .hamburger .bar {
    display: none;
  }
  .hamburger .menu-label {
    display: block;
  }
  /* ############## FIRST GRID ############### */
  #firsgrid {
    grid-template-areas: "box1 box2 box3";
    grid-template-rows: auto;
  }
  .popdivs {
    width: 30vw;
  }
  .butts {
    width: 15vw;
  }
  #box1 {
    padding: 5vh 0;
    display: grid;
    align-items: center;
    justify-content: center;
  }
  #heroimg {
    width: 20vw;
  }
  #in2img {
    padding-top: 10vh;
  }
  #in2text {
    grid-area: b2text;
    padding: 2vh 5vw 0 5vw;
  }
  #box3 {
    padding: 5vh 5vw 5vh 0;
  }
  /* ############## THIRD GRID ############### */
  #thdgrid {
    grid-template-areas: "box4 box4 box4" "box5 box5 box6" "box7 box8 box8" "box9 box8 box8";
    grid-template-rows: repeat(4, auto);
  }
  #box4 {
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .imgbut {
    width: 20vw;
    height: auto;
  }
  #vidbox {
    width: 70vw;
  }
  #vid {
    width: 50vw !important;
  }
  .player-controls {
    position: absolute; /* overlay on video */
    bottom: 10vh; /* distance from bottom */
    left: 50%; /* center horizontally */
    border-radius: 4vh;
    width: 30vw;
    height: 12vh;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #playIcon, #soundIcon, #fullscreenIcon {
    width: 8vw;
    height: 6vw;
    display: block;
  }
  #box8 {
    padding-top: 15vh;
    padding-bottom: 20vh;
  }
  /* ############## FIFTH GRID ############### */
  #fifgrid {
    grid-template-areas: "box10 box11 box11" "box13 box13 box12" "box14 box14 box14";
    grid-template-rows: repeat(3, auto);
  }
  :root {
    --fs-small: 0.9rem;
  }
}
/* =========================
   LARGE DESKTOP
========================= */
@media (min-width: 2560px) {
  body::before {
    content: "large desktop";
  }
}/*# sourceMappingURL=boholaine.css.map */