:root {
  --theme: light;
  /* --background: white;
  --foreground: black; */
  --background: black;
  --foreground: white;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --theme: dark;
    --background: black;
    --foreground: white;
  }
} */

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url('img/background-image-09-1-6000-3550-q-85.JPG'), url('img/background-image-04-0-3000-1774-q-30.JPG');
  background-position: center center;
  background-size: auto calc(100% / 0.49);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.page-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* display: flex; */
    /* flex-direction: row; */
    /* height: 300vh; */
}

.company-name-logo {
    display: inline-block;
    white-space: nowrap;
    /* height: 10vh;
    max-height: 10vh; */
}

.company-name-logo a {
  text-decoration: none;
}

img.company-logo {
  height: 2.3vh;
}

img.company-text {
  height: 1.6vh;
}

a.text-link {
  color: #0bf;
  font-weight: 600;
  text-decoration: none;
}

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


.company-name-logo img+img {
    padding: 0 0.5vw;
}

.company-logo {
    height: 3vh;
}

.company-text {
    height: 1.9vh;
    position: relative;
    top: -0.25vh;
}

.menu-items {
  display: flex;
  justify-content: center;
}

@media (orientation: portrait) {
  .menu-items {
    flex-direction: column;
  }
  .section-header {
    font-size: 1.8vh;
  }
  .text-panel {
    font-size: 1vh;
  }
}

.menu-item {
  display: inline-block;
}

img.menu-item {
  height: 2.1vh;
}

.menu-bar {
  /* background-color: red; */
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  height: 50px;
  padding: 2vh 1vw; 
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.profile-container {
    display: flex;
    flex-direction: row-reverse;
    /* background-color: green; */
}

.macbook-pro {
  position: relative;
  height: 66.5vh;
  width: 111.7vh;
}

.macbook-pro-container {
    position: relative;
}

.macbook-pro-screen {
  position: absolute;
  top: 3.7vh;
  left: 11.5vh;
  background-image: url('img/pixelplace-intake-screenshot-1600x1000-q-85.JPG'), url('img/pixelplace-intake-screenshot-800x500-q-30.JPG');
  background-size: contain;
  height: 55.7vh;
  width: 88.5vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: black;
}

.about-text-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: max-content 1fr;
  margin-top: 5vh;
}

.text-panel {
    background-color: rgba(0, 0, 0, 0.25);
    margin: 0;
    padding: 2vh 2vw;
}

.product-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: max-content 1fr;
  margin-top: 5vh;
}

.product-feature {
  font-size: 2vh;
  font-weight: 600;
  /* text-align: right; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.product-features {
    max-width: 35vh;
    /* margin-left: -8vh; */
}

.product-feature li {
    /* list-style-position: inside; */
}

.product-feature li+li {
    padding: 1vh 0 0 0;
}

.section-header {
    text-align: center;
    font-weight: 600;
}

@media (orientation: landscape) {
  .section-header {
    font-size: 4vh;
  }
}


.product-title {
    text-align: center;
    font-size: 2.5vh;
    font-weight: 600;

    margin-bottom: 1.5%; /* TODO: ADJUST OTHER BY -0.5% */
}

.left-column {
  grid-column: 1;
  grid-row: 1 / 3; /* Spans row 1 and row 2 */
  display: flex;
  justify-content: right;
  align-items: center;
  /* background-color: lime; */
}

.center-top {
  grid-column: 2;
  grid-row: 1;     /* Sits only in row 1 */
  /* background-color: blue; */
}

.center-bottom {
  grid-column: 2;
  grid-row: 2;     /* Sits only in row 2 */
}

.right-column {
  grid-column: 3;
  grid-row: 1 / 3; /* Spans row 1 and row 2 */
  display: flex;
  justify-content: left;
  align-items: center;
  /* background-color: magenta; */
}

.beta-available-container {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
}

.beta-available-button {
    height: 6vh;
}

.mac-app-store-container {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
}

.mac-app-store-container img+img {
    padding: 2vh 0;
}

.mac-app-store-button {
    height: 6vh;
}

.mac-app-store-price {
    height: 5vh;
}

@media (orientation: portrait) {
  .menu-bar {
    padding: 1.8vh 1.5vh;
  }
  .profile-container {
    margin: 0 -2vh 0 0;
  }
  .product-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    margin: 8vh 0 0 0;
  }
  .product-container > div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .product-title {
    grid-column: 1;
    grid-row: 1;
  }
  .macbook-pro-container {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .left-column {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
    text-align: center;
  }
  .right-column {
    grid-column: 1;
    grid-row: 4;
    justify-content: center;
    padding: 8.5vh 0 0 0;
  }
  .macbook-pro {
    width: 95vw;
    height: revert;
  }
  .macbook-pro-screen {
    width: 75vw;
    height: 48vw;
    top: 3.33vw;
    left: 12.3vw;
  }
  .product-title {
    margin-bottom: 2vh;
  }
  .product-features {
    max-width: revert;
    padding: 4.5vh 0 0 0;
  }
  .product-feature {
    font-size: 1.8vh;
  }
  .product-features ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
  }
  .mac-app-store-button {
    height: 4.5vh;
  }
  .mac-app-store-price {
    height: 4vh;
    padding: 1.7vh 0 0 0;
  }
}

