/* --------------------------------------------------------------------Global */

.pt-sans-regular {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-bold {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pt-sans-regular-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.pt-sans-bold-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

:root {
  --primary-color: #063b5b;
  --secondary-color: #9ab2cc;
}

strong {
  color: var(--primary-color);
}

html {
  box-sizing: border-box;
  scrollbar-gutter: stable;
}

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
  color: var(--primary-color);

  padding-top: 50px;

  width: 80%;
  /* border: 5px solid orange; */
  margin-left: auto;
  margin-right: auto;

  height: 100vh;
}

body > footer {
  position: sticky;
  top: 100vh;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.italic {
  font-style: italic;
}

.second-paragraph {
  margin-top: 1em;
}

.product-wrap {
  border-bottom: solid 1px var(--primary-color);
}

#about:hover {
  cursor: pointer;
}

#about-text {
  /* margin-bottom: 4em; */
  /* margin-bottom: 0; */
  color: var(--secondary-color);

  display: none;
}

#about-text p {
  margin-bottom: 1em;
  white-space: pre-line;
}

#contact:hover {
  cursor: pointer;
}

#contact-text {
  color: var(--secondary-color);

  display: none;
}

#contact-text p {
  margin-bottom: 1em;
  white-space: pre-line;
}

.contact-address {
  color: var(--primary-color);
}

/* --------------------------------------------------------------------Header */

header {
  display: flex;
  justify-content: space-between;

  font-size: 13px;

  margin-bottom: 15vh;
}

header nav div {
  margin-left: 10px;
  color: var(--secondary-color);
}

header nav {
  display: flex;
  gap: 1rem;
}

header h1 {
  font-weight: 700;
  letter-spacing: 0.75px;
}

#about {
  text-decoration: none;
  color: var(--secondary-color);
}

#contact {
  text-decoration: none;
  color: var(--secondary-color);
}

/* ------------------------------------------------------------------Products */

.product {
  border-top: solid 1px var(--primary-color);
  padding-top: 10px;
}

/* product info / header */

.product .product__info {
  display: flex;
  margin-bottom: 10px;
}

.product__info--name {
  width: 50%;
}

.product__info--medium {
  width: 25%;
}

.product__info--year {
  width: 25%;
  text-align: right;
}

/* product description / dropdown */

.product .product__description {
  display: flex;

  padding-top: 10px;
  margin-bottom: 5vh;
}

.product__description--photo,
.product__description--writing {
  width: 50%;
}

.product__description--photo {
  padding-right: 10vw;
}

.product__description--writing {
  padding-right: 10vw;
  white-space: pre-line;
}

.toggle_info {
  display: none;
}

/* --------------------------------------------------------------------footer */

footer {
  display: flex;
  justify-content: space-between;

  margin-top: 10vh;
  margin-bottom: 3vh;
}

/* -----------------------------------------------------@media 1000px Products */

@media (max-width: 1000px) {
  .product {
    padding-top: 7px;
  }

  .product .product__info {
    margin-bottom: 7px;
  }

  .product__info--medium {
    display: none;
  }

  .product__info--year {
    width: 50%;
    text-align: right;
  }

  .product .product__description {
    display: block;
  }

  .product__description--photo,
  .product__description--writing {
    width: 100%;
  }

  .product__description--photo,
  .product__description--writing {
    padding-right: 0;
  }

  .product__description--photo {
    margin-bottom: 3vh;
  }

  footer {
    display: block;

    margin-top: 10vh;
    margin-bottom: 2vh;
  }
}
