@import "base.css";
@import "main.css";

html, body {
  background: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}

p, li, td {
  color: var(--font-color);
}

a {
  text-decoration: none;
  font-size: inherit;
  display: inline-block;
  color: var(--primary-color);
}

/* ---------------------------
   Scrollbars
------------------------------ */

::-webkit-scrollbar,
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner  {
    width: 7px;
    background: var(--md-color);
}

::-webkit-scrollbar-thumb {
    width: 7px;
    background: var(--gradient-1);
}

::-webkit-scrollbar-button {
  display: none !important;
}

/* ---------------------------
   Theme
------------------------------ */

.bg-texture {
  background: url('../../images/grunge-retro-texture-teal.webp') no-repeat;
  background-size: cover;
}

.bg-texture-red {
  background: url('../../images/grunge-bg-red.webp') no-repeat;
  background-size: cover;
}

.bg-chairs {
  background: url('../../images/eames-chairs-row.webp') no-repeat;
  background-size: cover;
  min-height: 400px;
}

.bg-texture-stack {
  background: url('../../images/eames-chairs-stack.webp') no-repeat;
  background-size: cover;
  min-height: 400px;
}

.box-shadow {
  padding: 8px 30px;
  display: inline-block;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: -10px 10px 0 rgba(47, 91, 106, 0.6);
}

.retro-border {
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: -8px 8px 0 rgba(47, 91, 106, 0.6);
}

.txt-shadow {
  color: #222222;
  --x-offset: -0.0625em;
  --y-offset: 0.0625em;
  --stroke: 0.025em;
  --background-color: var(--primary-color);
  --stroke-color: var(--secondary-color);
  text-shadow:
    var(--x-offset) var(--y-offset) 0px var(--background-color),
    calc(var(--x-offset) - var(--stroke)) calc(var(--y-offset) + var(--stroke)) 0px var(--stroke-color);
}

.chair {
  position: absolute;
  right: 0;
  max-width: 700px;
  width: 100%;
  height: 600px;
  max-height: 100%;
  background: url(../../images/eames-lounge-old.webp) 100% 0 no-repeat;
  background-size: contain;
  z-index: 0;
}

.hero-txt {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  height: 550px;
  max-height: 700px;
}

.pos-btm-l {
  position: absolute;
  bottom: 0;
  left: 0;
}

.lt-color {
  color: #ffffff !important;
}

.txt-md {
  font-size: 4rem;
  line-height: 1.2;
}

.txt-md span {
  display: block;
  font-size: inherit;
}

.txt-lg {
  font-size: 5rem;
  line-height: 2;
}

.txt-xl {
  font-size: 5rem;
}

.max-width--med {
  max-width: 780px;
}

.max-width--lrg {
  max-width: 1000px;
}

.txt-align--l {
  text-align: left;
}

@media only screen and (max-width: 744px) {

  .txt-xl {
    font-size: 3.5rem;
  }

  .txt-lg {
    font-size: 3rem;
  }

  .txt-md {
    font-size: 2.75rem;
  }

  .chair {
    top: 260px;
    max-height: 75%;
  }

  .hero {
    height: 680px;
  }

}

