/* Modern, Compact, and Clean CSS */

:root {
  --primary-color: #2c3e50;
  --secondary-color: #18BC9C;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --text-color: #212529;
  --light-text-color: #ffffff;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--light-gray);
}

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

a:hover {
  color: #128f76;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

#mainNav {
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mainNav .navbar-brand {
    font-size: 1.5rem;
}

#mainNav .nav-link {
    color: var(--light-text-color);
    font-weight: 700;
    text-transform: uppercase;
}

#mainNav .nav-link:hover {
    color: var(--secondary-color);
}

.masthead {
  padding: 8rem 0;
  background-color: var(--primary-color);
}

.masthead .img-profile {
  width: 12rem;
  height: 12rem;
  border: 0.5rem solid rgba(255, 255, 255, 0.2);
}

.masthead h1 {
  font-size: 3rem;
  line-height: 3rem;
}

.masthead h2 {
  font-size: 1.25rem;
}

section {
  padding: 4rem 0;
}

section h2 {
    font-size: 2.25rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.resume-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.resume-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resume-content .subheading {
    color: #868e96;
    font-weight: 700;
    font-size: 1.1rem;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.skills-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.skills-list li {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 5px;
    font-weight: 700;
}

.footer {
  background-color: var(--dark-gray);
  color: var(--light-text-color);
  padding: 3rem 0;
}

.footer .btn-social {
    color: white;
    border-color: white;
}

.copyright {
  background-color: #212529;
}

@media (min-width: 768px) {
  .masthead {
    padding: 12rem 0;
  }
  .masthead h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  .masthead h2 {
    font-size: 1.5rem;
  }
  section {
    padding: 6rem 0;
  }
}