@font-face {
  font-family: "mulish";
  src: url("../fonts/mulish-variablefont_wght-webfont.woff2") format("woff2"),
    url("../fonts/mulish-variablefont_wght-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "comfortaa";
  src: url("../fonts/comfortaa-variablefont_wght-webfont.woff2") format("woff2"),
    url("../fonts/comfortaa-variablefont_wght-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* colors */
  --primary-color: hsl(209, 73%, 47%);
  --secondary-color: hsl(309, 100%, 70%);
  --light-gray: hsl(209, 23%, 94%);
  --black: hsl(210, 76%, 7%);
  --black-75: hsla(208, 12%, 30%); /*#434D56 */

  /* typography */
  --heading-font: "comfortaa", sans-serif;
  --body-font: "mulish", sans-serif;

  /* layout etc */
  --border-radius: 8px;
  --img-dimension: 350px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: var(--body-font);
  font-size: 20px !important;
  color: var(--black);
  scroll-behavior: smooth;
}
body {
  line-height: 2;
  background-image: linear-gradient(90deg, var(--light-gray), white);
}
.container-fluid {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  /* font-weight: bold; */
}

/* .navbar-brand::before {
  content: "p";
  left: 6px;
}
.navbar-brand::before,
.navbar-brand::after {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 48px;
  position: relative;
}
.navbar-brand:hover::before {
  content: "Paul";
  left: -10px;
  top: 10px;
}
.navbar-brand:hover::after {
  content: "arini";
  left: -4px;
  top: 10px;
} */

.nav-link,
.nav-link a {
  color: var(--primary-color);
}
.nav-link:hover {
  color: var(--black);
  text-decoration: underline;
}

blockquote.blockquote {
  font-size: 1.25rem;
  font-style: italic;
  font-family: var(--body-font);
}

blockquote.blockquote::before {
  content: "“";
  position: absolute;
  font-size: 20rem;
  left: -10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  /* transform: translateY(-20rem); */
  transform: translateY(-16rem);
  opacity: 0.2;
}
blockquote.blockquote::after {
  content: "”";
  position: absolute;
  font-size: 20rem;
  right: 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  /* transform: translateY(-12rem); */
  transform: translateY(-15rem);
  opacity: 0.2;
}

[data-title="profile"] .icon-link svg {
  height: 40px;
  width: 40px;
}

[data-title="portfolio"] svg {
  height: 48px;
  width: 48px;
}

[data-title="tools"] svg {
  height: 40px;
  width: 40px;
}
[data-title="tools"] span.tools-text {
  display: none; /* shown above 768px */
  font-family: var(--body-font);
  color: white;
  padding-left: 8px;
}

[data-title="tools"] .list-group-item:hover span.tools-text, 
[data-title="tools"] .list-group-item:focus span.tools-text,
[data-title="tools"] .list-group-item:active span.tools-text {
  display: inline-block;
}

[data-title="tools"] li {
  border-radius: var(--border-radius) !important;
  background-color: var(--black-75);
  background-image: linear-gradient(45deg, var(--black-75), var(--black));
}

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

.color-secondary {
  color: var(--secondary-color);
}

.btn-pm-primary {
  border-radius: var(--border-radius);
  background-color: var(--black);
  color: white;
  border: 1px solid var(--primary-color);
  transition: transform 0.15s ease-in-out, box-shadow 0.1s ease-in-out;
}
.btn-pm-primary:hover,
.btn-pm-primary:focus {
  background-color: var(--black);
  color: white;
  border: 1px solid var(--primary-color);
  background-image: linear-gradient(
    90deg,
    var(--black) 0%,
    var(--primary-color) 100%
  );
  border: 1px solid var(--primary-color);
  box-shadow: 8px 8px var(--secondary-color);
  transform: translate(-4px, -4px);
}

.btn-pm-primary:active {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px var(--secondary-color);
}

.title-name {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 1.2rem;
}

.title-name .logo-triangles {
  position: relative;
  top: -4px;
}

.portfolio {
  background-color: var(--black);
  background-image: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--black) 100%
  );
}

.services__title h3 {
  cursor: pointer;
  transition: 0.3s;
}
.services__title h3:hover,
.services__title h3:focus,
.services__title h3:active {
  transform: scale(1.1);
}
.services__title h3 svg {
  margin-bottom: 4px;
}

.services__image img {
  width: 100%;
  height: var(--img-dimension);
  max-height: var(--img-dimension);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius);
  box-shadow: 8px 8px var(--secondary-color);
  border: 1px solid var(--black);
}

[data-title="testimonial"] {
  background-color: var(--primary-color);
  color: white;
}


footer {
  background-color: var(--black);
}
footer p {
  opacity: 0.5;
}














@media screen and (min-width: 768px) {
  .profile-blurb {
    font-size: 1.25rem;
  }
  [data-title="tools"] span.tools-text {
    display: inline;
  }
}

@media screen and (min-width: 992px) {
  .services__text {
    width: calc(90vw - var(--img-dimension));
    max-width: calc(90% - var(--img-dimension));
  }
}

@media screen and (min-width: 1200px) {
  blockquote.blockquote::before {
    transform: translateY(-16rem);
  }
  blockquote.blockquote::after {
    transform: translateY(-15rem);
  }
}

/* temp dev styles */
.active {
  color: var(--secondary-color);
}
svg {
  width: 48px;
  height: 48px;
}
/* .services {
  outline: 1px solid red;
}
.services__text {
  outline: 1px solid yellow;
}
.services__image {
  outline: 6px solid green;
}

.consulting,
.websites,
.nationbilder,
.integrations {
  outline: 1px solid black;
} */
