/* https://coolors.co/6a594a-c1c6cc-c9b9a9-c1b3a5-3c352e */
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap");

body,
html {
  height: 100%;
  margin: 0;
  min-height: 100%;
  padding: 0;
  font-size: 16px;
  font-family: "Dosis", sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  color: #3c352e;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

h2 {
  text-transform: uppercase;
  text-decoration: underline;
}

.navigation {
  position: fixed;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  background: #c9b9a9;
}

.navigation_item {
  margin-right: 10px;
}

.navigation_link {
  display: inline-flex;
  position: relative;
  font-size: 14px;
  color: #3c352e;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
  padding: 5px 20px;
  text-transform: uppercase;
}

.navigation_link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 1px;
  background: #6a594a;
  transform: skew(20deg);
  transition: 0.3s;
  z-index: -1;
}

.navigation_link:hover {
  color: white;
}

.navigation_link:hover:before {
  width: 100%;
}

.pimg1,
.pimg2,
.pimg3 {
  position: relative;
  opacity: 0.7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  background-attachment: fixed;
}

.pimg1 {
  background-image: url(img/image6.jpg);
  min-height: 100%;
}

.pimg2 {
  background-image: url(img/image5.jpg);
  min-height: 400px;
}

.pimg3 {
  background-image: url(img/image4.jpg);
  min-height: 400px;
}

.section {
  text-align: center;
  padding: 15px 80px;
  text-align: left;
}

.section-light {
  background-color: #c1c6cc;
  color: #3c352e;
  box-shadow: 0px 0px 50px 20px rgba(0, 0, 0, 1);
}

.section-dark {
  background-color: #3c352e;
  color: #ddd;
  box-shadow: 0px 0px 50px 20px rgba(0, 0, 0, 1);
}

.ptext {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #3c352e;
  font-size: 27px;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.ptext .border {
  background-color: #6a594a;
  color: #fff;
  padding: 20px;
}

.ptext .border.trans {
  background-color: transparent;
}

.lucia,
.verena {
  display: inline-block;
  width: 400px;
  padding: 50px;
}

@media (max-width: 568px) {
  .pimg1,
  .pimg2,
  .pimg3 {
    background-attachment: scroll;
  }

  .navigation {
    display: none;
  }
}

.product {
  border-bottom: 1px dashed #aaa;
  text-align: left;
}

.product .name {
  font-weight: bold;
  cursor: pointer;
}

.product .price {
  float: right;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.div1 {
  grid-area: 1 / 1 / 2 / 2;
  text-align: left;
}

.div2 {
  grid-area: 1 / 2 / 2 / 3;
  text-align: left;
}

.div3 {
  grid-area: 1 / 3 / 2 / 4;
}

.massagegrid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.massagediv1 {
  grid-area: 1 / 1 / 2 / 2;
  padding: 20px 20px;
}

.massagediv2 {
  grid-area: 1 / 2 / 2 / 3;
}

.massagediv3 {
  grid-area: 1 / 3 / 2 / 4;
  padding: 20px;
}

.massagediv4 {
  grid-area: 1 / 4 / 2 / 5;
}

/* tooltips */
[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.3s;
  visibility: visible;
}

/* box for title text */
[data-title]:after {
  content: attr(data-title);
  /* position for title view box */
  position: absolute;
  bottom: 1.5rem;

  /*left: 100%;*/
  left: 0rem;
  z-index: 99999;
  visibility: hidden;
  width: 200px;
  font-style: italic;
  font-weight: 100;
  /* optional */
  /* white-space: nowrap; */
  /* stilization */
  background-color: #c9b9a9;
  color: #111;
  /*font-size: 150%;*/
  padding: 0.1rem 0.5rem 0.2rem 0.5rem;
  box-shadow: 1px 1px 3px #222222;
  border-radius: 0.5rem;
  opacity: 0;
  /*border: 1px solid #111111;*/
}

[data-title] {
  position: relative;
}
