/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

:root {
  --primary-color: #000000;
  --text-color: #000000;
  --title-color: #00b094ff;
}

body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: var(--text-color);
  font-family: 'Gruppo', serif;
  font-size: 1.3rem;
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
  margin-top: 2rem;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.visible-mobile {
  display: none !important;
}

@media (max-width: 489px) {
  .visible-mobile {
    display: inline !important;
  }

  .hidden-mobile {
    display: none !important;
  }
}

/* CUSTOM STYLES MOVED FROM INLINE
-------------------------------------------------- */

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.fa:hover {
  opacity: 0.7;
}

.appearing-animation {
  animation: fadeIn 3s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.navbar {
  background-color: var(--primary-color);
  font-size-adjust: auto;
}

.navbar-brand img {
  max-height: 45px;
}

.language-nav {
  font-size: 8px;
}

.language-nav img {
  height: 1%;
}

#myCarousel {
  margin-bottom: 1rem;
  max-height: fit-content;
}

#myCarousel .carousel-inner {
  max-height: auto;
}

#myCarousel .carousel-item.active {
  max-height: 400px;
}

#myCarousel .carousel-item > img:first-child {
  height: 100%;
}

.profile-image {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  min-width: 0;
  width: 20%;
  height: 70%;
  object-fit: cover;
  z-index: 1;
  border-radius: 50px;
}

.visible-mobile {
  max-height: 500px;
}

#myCarousel .carousel-caption {
  max-width: 45%;
}

#myCarousel h1 {
  color: white;
  text-shadow: 1px 1px #575555;
}

#myCarousel .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.featurette-row {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0;
}

.featurette-image {
  height: auto;
}

#whatCanIDoCarousel {
  margin-bottom: 3rem;
  background-color: #f8f9fa;
}

#whatCanIDoCarousel .carousel-item {
  min-height: 300px;
}

#whatCanIDoCarousel img {
  height: 300px;
  object-fit: cover;
}

#whatCanIDoCarousel .carousel-caption {
  color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

#whatCanIDoCarousel .carousel-caption.overlay-text {
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

#skills {
  margin-right: 0;
  margin-left: 0;
}

#skills .col-md-4 {
  text-align: center;
  border-right: 1px dashed var(--primary-color);
  padding-left: 3rem;
}

#skills h1, #experience h1 {
  color: var(--primary-color);
}

#skills ul {
  text-align: start;
}

#programming-title { list-style-image: url('./assets/img/Programming_1.png'); }
#cloud-title { list-style-image: url('./assets/img/Cloud_1.png'); }
#business-title { list-style-image: url('./assets/img/Business_1.png'); }
#scada-title { list-style-image: url('./assets/img/Scada_1.png'); }
#comms-title { list-style-image: url('./assets/img/Comms_1.png'); }
#web-title { list-style-image: url('./assets/img/Web_1.png'); }
#linux-title { list-style-image: url('./assets/img/Linux_1.png'); }

#experience {
  text-align: center;
}

#experience .col-md-8 {
  text-align: justify;
}

#experience h4 {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--primary-color);
}

#experience .lead {
  font-size: 1rem;
}

#experience img {
  max-height: 200px;
  object-fit: contain;
}

#contact ul {
  text-align: center;
  width: 100%;
}

#contact li, #contact a, #contact i, #contact p {
  padding-bottom: 0px;
  padding-top: 0px;
}

#contact a {
  text-decoration: none;
}

.separator-bar {
  display: inline-block;
  height: 50px;
  width: 100%;
  background-color: var(--primary-color);
}