:root {
  --purple:#A1207C;
  --green:#6fb346;
  --red:#ea2d2e;
  --blue:#00A1E4;
  --yellow:#FDD400;

  --nav-height: 4.5rem;
  --border-radius: 0.75rem;
  --bs-heading-color: var(--purple);
  --bs-card-title-color: var(--purple);
}


html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--nav-height);
}

.navbar {
  min-height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.navbar-brand img {
  height: 2.5rem;
  width: auto;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section--warm {
  background-color: var(--color-warm);
}

.section--mint {
  background: linear-gradient(45deg,  var(--red) 0%,var(--green) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.section--sky {
  background: linear-gradient(45deg,  var(--blue) 0%,var(--yellow) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.section--contact {
  background: linear-gradient(45deg,  var(--purple) 0%,white 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 1px 1px 5px #000;
  text-align: center;
}

.section-lead {
  font-size: 1.15rem;
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section--hero {
  height: calc( 100vh - var(--nav-height));
  width: 100%;
  overflow: hidden;
}

#hero--container {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #000;
  overflow: hidden;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#wrapper div {
  position: absolute;
  background-position: center center;
  background-size: cover;
}

.layer-bg {
  width: 100vw;
  height: 100vh;
  z-index: 6;
  background-image: url('../../img/bg-start.jpg');
  left: 0;
  top: 0;
}

.layer-green {
  width: 100px;
  height: 117px;
  z-index: 10;
  background-image: url('../../img/intro_green.png');
  left: 5%;
  bottom: 10%;
}

.layer-red {
  width: 100px;
  height: 155px;
  z-index: 9;
  background-image: url('../../img/intro_red.png');
  left: 25%;
  top: 65%;
}
.layer-blue {
  width: 100px;
  height: 155px;
  z-index: 9;
  background-image: url('../../img/intro_blue.png');
  right: 25%;
  top: 65%;
}
.layer-yellow {
  width: 100px;
  height: 117px;
  z-index: 10;
  background-image: url('../../img/intro_yellow.png');
  right: 10%;
  bottom: 10%;
}

.word {
  top: calc( 2rem + var(--nav-height));
  left:5%;
  width: 90%;
  text-align: center;
  z-index: 8;
  background-color: rgba(255,255,255,.7);
  border-radius: var(--border-radius);
  padding: 1rem;
}
.word h1 {
  font-weight: 700;
  font-size: calc(1rem + 1.5vw);
  margin-bottom: 0.5rem;
}
p.lead {
  margin-bottom: 0;
}

@media (min-width: 576px) { ... }

@media (min-width: 768px) {
  .layer-bg {
    width: 105vw;
    height: 105vh;
    left: -25px;
    top: -25px;
  }

  .layer-green {
    width: 289px;
    height: 337px;
    left: 2%;
    bottom: 0;
    z-index: 10;
  }

  .layer-red {
    width: 289px;
    height: 450px;
    left: 2%;
    top: 10%;
    z-index: 7;
  }
  .layer-blue {
    width: 289px;
    height: 450px;
    right: 2%;
    top: 10%;
    z-index: 7;
  }
  .layer-yellow {
    width: 289px;
    height: 337px;
    right: 7%;
    bottom: 0;
    z-index: 10;
  }

  .word {
    top: 30%;
    left:25%;
    width: 50%;
    padding: 3rem;
    z-index: 8;
  }
  .word h1 {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .layer-green {
    width: 350px;
    height: 408px;
  }

  .layer-red {
    width: 350px;
    height: 544px;
  }
  .layer-blue {
    width: 350px;
    height: 544px;
  }
  .layer-yellow {
    width: 350px;
    height: 408px;
  }

  .word {
    top: 30%;
    left:25%;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .layer-green {
    width: 450px;
    height: 525px;
    left: 12%;
  }
  .layer-red {
    width: 450px;
    height: 700px;
    left: 5%;
  }
  .layer-blue {
    width: 450px;
    height: 700px;
    right: 5%;
  }
  .layer-yellow {
    width: 450px;
    height: 525px;
    right: 20%;
  }
  .word {
    top: 25%;
    left:33%;
    width: 34%;
  }
}

@media (min-width: 1400px) { ... }

.text-muted {
  margin-top: 1rem;
  @media (min-width: 992px) {
    margin-top: 0;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}
.card-image-wrapper,
.feature-row > div {
  position: relative;
}

.feature-row-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.credits {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .7);
  color:white;
  font-size: 10px;
  margin-right: calc(var(--bs-gutter-x) * .5);
  margin-bottom: 0;
  padding: 2px 5px;
  border-radius: var(--border-radius) 0 var(--border-radius) 0;
}
.card-image-wrapper .credits {
  margin-right: 0;
  border-radius: var(--border-radius) 0 0 0;
}

.feature-row__visual {
  border-radius: 0.75rem;
  min-height: 12rem;
  aspect-ratio: auto;
}

@media (min-width: 768px) {
  .feature-row {
    padding: 2rem;
  }

  .feature-row__visual {
    min-height: 14rem;
  }
}

.card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.card-title {
  color: var(--purple);
}

.cta-stripe {
  text-align: center;
}

.cta-stripe--social {
  background-color: var(--purple);
  color: #fff;
}

.cta-stripe--traeger {
  background-color: var(--purple);
  color: #fff;
}

.cta-stripe .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-item a,
i.bi.text-primary {
  color: var(--purple);
}
i.bi.text-primary:before {
  color: var(--purple);
}
