@import url('https://fonts.googleapis.com/css?family=Unna:300,400,600|Nunito+Sans:200,400,600');

:root {
   
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;

    --blue-light: #daedfa; 
    --blue-dark: #232a30;

    : #343a40;
    --purple: #533777;
    --light-blue: #e1f7f5;
    --light-purple: #c290d2;

    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
/*
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
*/

  --font-family-sans-serif: 'Nunito Sans', -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  
  --font-family-serif: Unna, serif;
  --color-text: var(--gray-dark);
  --font-family-text: var(--font-family-serif);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-text);
  font-size: 15pt;
  color: var(--color-text);
  font-weight: 400;
}

.family-sans {
  font-family: var(--font-family-sans-serif);
}

.icon {
  display: inline-block;
  font-size: inherit;
  overflow: visible;
  vertical-align: -0.125;
  text-rendering: auto;
  fill: gray !important;
  width: 50px;
  height: 50px;
}

.animate__animated {
  visibility: visible !important;
}

.site-header {
  background-color: #333;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin:0;
  padding:0;
}

.site-header .animate__animated {
  animation-delay: 1s;
  animation-duration: 1s;
}

.layout-text {
  font-size: 1.1em;
}

.site-nav {
  background: var(--gray-dark);
}

@media screen and (max-width: 768px) {
  .site-header .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
  }
}

.site-header .page-section-title {
  font-size: 3em;
  font-family: var(--font-family-sans-serif);
  font-weight: 200;
}

.site-header .page-section-text {
  font-size: 1.2em;
}

.site-header .nav-link {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 2px;
  font-size: .85em;
}

.site-header .navbar-text {
  padding-bottom: 0;
  margin-bottom: 2px;
  font-size: .85em;
}

.site-header .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 100px;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--yellow);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-out;
}

.site-header .nav-link:hover:before {
  visibility: visible;
  left: 0;
  transform: scaleX(1);
}

.site-header .gh-hero {
  margin-top: 55px;
  background: url(../images/gh_photo_hero_1x.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

#mobile-welcome {
  background-color: rgba(0, 0, 0, 0.9); 
  color: #fff;
}

.gh-hero h3 {
  font-size: 2em;
  font-family: var(--font-family-sans-serif);
}

.gh-hero a {
  color: var(--yellow);
  text-decoration: none;
}

.gh-hero a:visited {
  color: var(--yellow);
}

.gh-hero a:hover {
  color: var(--info);
}

.gh-hero a:active {
  color: var(--yellow);
}

.mobile-welcome-link a {
  color: var(--yellow);
  text-decoration: none;
}

.mobile-welcome-link a:visited {
  color: var(--yellow);
}

.mobile-welcome-link a:hover {
  color: var(--info);
}

.mobile-welcome-link a:active {
  color: var(--yellow);
}

#page-multicolumn {
  background: var(--light-blue);
}

.layout-about .layout-image {
  transition: all 0.3s ease-out;
}

.layout-about .layout-image:hover {
  transform: scale(1.1) translateY(-3px);
}

.page-section-header .page-section-title {
  font-size: 4em;
  font-family: var(--font-family-sans-serif);
  font-weight: 600;
  color: var(--blue-dark);
}

.page-section-header .page-section-text {
  font-size: 1.8em;
  font-weight: 200;
}

.page-section-subtitle {
  font-size: 2em;
  font-family: var(--font-family-sans-serif);
  font-weight: 600;
  color: var(--purple);
}

.page-section-lead {
  font-size: 1.5em;
  font-weight: 400;
  font-family: var(--font-family-sans-serif);
}

/*
.layout-resume {
  background-color: var(--blue-light); 
  color: var(--blue-dark);
}
*/

.resume-title {
  font-size: 4em;
  font-family: var(--font-family-sans-serif);
  font-weight: 600;
}

.resume-subtitle {
  font-size: 2em;
  font-family: var(--font-family-sans-serif);
  font-weight: 600;
}

.layout-title {
  color: var(--purple);
  font-family: var(--font-family-sans-serif);
  font-weight: 200;
  font-size: 1.6em;
}

.portfolio-example-title {
  font-family: var(--font-family-sans-serif);
  font-weight: 600;
  font-size: 1.6em;
}

.layout-skills .layout-image {
  background: var(--light-blue);
}

#page-carousel {
  background: var(--light-purple);
}

.layout-contact .layout-title {
  color: var(--purple);
  font-family: var(--font-family-sans-serif);
  font-size: 2.2em;
}

#page-floater {
  background: var(--light-blue);
}

@media screen and (max-width: 767.98px) {

  .site-header .layout-hero {
    min-height: 40vh;
  }

  .page-section-header .page-section-title {
    font-size: 3em;
  }

}

.hero-text-block {
  border-radius: 5px;
  background: rgba(0,0,0,0.60);
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {

  .hero-title {
    font-size: 1.3em;
  }

  .hero-text {
    font-size: 1.2em;
  }

}

@media screen and (min-width: 1200px) {

  .hero-title {
    font-size: 1.5em;
  }

  .hero-text {
    font-size: 1.4em;
  }

}

@media screen and (min-width: 768px) {

  .site-header .layout-hero {
    min-height: 80vh;
    max-height: 90vh;
  }


  #page-floater {
    margin: 150px 0 150px 0;
  }

  .layout-for-fun .layout-container {
    position: relative;
  }

  .layout-for-fun .layout-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg)
      scale(1.1);
  }

}

.layout-social .layout-icon {
  font-size: 2em;
}

.modal-header {
  border-bottom: 0px;
}

.modal-footer {
  border-top: 0px;
}

footer {
  font-family: var(--font-family-sans-serif);
}

.footer-keywords {
  font-size: .75em;
}

.layout-alert {
  margin-top: 55px;
}

#sticky-home {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.photo-more-info {
  position: absolute; 
  bottom: 15px; 
  left: 15px
}

#portfolio-header {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  background-color: #000;
  color: #fff;
}

#portfolio-header:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: url(../images/section_head_prague_2.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#portfolio-header .page-section-title {
  color: #fff;
}

.portfolio-card-subhead {
  font-size: .6em;
}

.portfolio-card-at-a-glance {
  font-size: .7em;
}

.portfolio-card-body {
  border-top: 1px solid #ddd;
}

#resume-header {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  background-color: #000;
  color: #fff;
}

#resume-header:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: url(../images/section_head_rome_2.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#resume-header .page-section-title {
  color: #fff;
}

.resume-download {
  position: absolute; 
  bottom: 0px; 
  right: 15px
}


#about-header {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  background-color: #000;
  color: #fff;
}

#about-header:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: url(../images/section_head_bruges_1.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#about-header .page-section-title {
  color: #fff;
}

#contact-header {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  background-color: #000;
  color: #fff;
}

#contact-header:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: url(../images/section_head_isla_mujeres_1.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#contact-header .page-section-title {
  color: #fff;
}

.shadow-text {
  text-shadow: 2px 2px black;
}

/* Carousel */

#artifact-carousel .carousel-item img {  
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  /* height:50vh; */
}

#artifact-carousel .carousel-item:before {
  content: "";
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  display: block;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
}

#artifact-carousel .carousel-control-next-icon {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 512 512" fill="%23fff" xmlns="http://www.w3.org/2000/svg"><path d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/></svg>');
}

#artifact-carousel .carousel-control-prev-icon {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 512 512" fill="%23fff" xmlns="http://www.w3.org/2000/svg"><path d="M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z"/></svg>');
}

#artifact-carousel .carousel-control-next-icon, 
#artifact-carousel .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
}

#artifact-carousel .carousel-control-opacity {
  opacity: .75;
}

#artifact-carousel .carousel-control-hover-opacity {
  opacity: 1;
}

#artifact-carousel .artifact-carousel-container {
  border: 1px solid;
  border-color: var(--gray-dark);
}

.work-samples-link a,
.work-samples-link a:link,
.work-samples-link a:visited,
.work-samples-link a:active {
  text-decoration: none;
}

.work-samples-link a:hover {
  text-decoration: underline;
}

.alert .work-samples-link a,
.alert .work-samples-link a:link,
.alert .work-samples-link a:visited,
.alert .work-samples-link a:active {
  text-decoration: none;
}