@font-face {
  font-family: 'pixel';
  src: url('../fonts/PIXELADE.TTF');
}

body,
html {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'pixel', Arial, sans-serif;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
}

.content-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.content-section-heading h2 {
  font-size: 3rem;
}

.content-section-heading h3 {
  font-size: 1rem;
  text-transform: uppercase;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}


h3 {
  font-size: 3rem;
}

.text-faded {
  color: rgba(255, 255, 255, 0.7);
}

/* Map */
.map {
  height: 30rem;
}

@media (max-width: 992px) {
  .map {
    height: 75%;
  }
}

.map iframe {
  pointer-events: none;
}

.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: white;
  background: rgba(52, 58, 64, 0.5);
  line-height: 45px;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
  color: white;
}

.scroll-to-top:hover {
  background: #343a40;
}

.scroll-to-top i {
  font-weight: 800;
}

.masthead {
  width: 100%;
  height: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../img/sky.png");
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: pixelated;
}

.masthead h1 {
  font-size: 4rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .masthead {
    height: 100vh;
  }

  .masthead h1 {
    font-size: 8rem;
  }
}

.service-icon {
  background-color: #fff;
  color: #1D809F;
  height: 7rem;
  width: 7rem;
  display: block;
  line-height: 7.5rem;
  font-size: 2.25rem;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.callout {
  padding: 15rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-callout.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.callout h2 {
  font-size: 3.5rem;
  font-weight: 700;
  display: block;
  max-width: 30rem;
}

p {
  font-size: 1.25rem;
}

.history-item,
.strength-table,
.btn {
  font-size: 1.25rem;
}

.portfolio-item {
  display: block;
  position: relative;
  overflow: hidden;
  max-width: 530px;
  margin: auto auto 1rem;
}

.portfolio-item .caption {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.portfolio-item .caption .caption-content {
  color: #fff;
  margin: auto 2rem 2rem;
}

.portfolio-item .caption .caption-content h2 {
  font-size: 2rem;
  text-transform: uppercase;
}

.portfolio-item .caption .caption-content p {
  font-weight: 300;
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  .portfolio-item {
    max-width: none;
    margin: 0;
  }

  .portfolio-item .caption {
    -webkit-transition: -webkit-clip-path 0.25s ease-out, background-color 0.7s;
    -webkit-clip-path: inset(0px);
    clip-path: inset(0px);
  }

  .portfolio-item .caption .caption-content {
    transition: opacity 0.25s;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
  }

  .portfolio-item img {
    -webkit-transition: -webkit-clip-path 0.25s ease-out;
    -webkit-clip-path: inset(-1px);
    clip-path: inset(-1px);
  }

  .portfolio-item:hover img {
    -webkit-clip-path: inset(2rem);
    clip-path: inset(2rem);
  }

  .portfolio-item:hover .caption {
    background-color: rgba(40, 167, 69, 0.9);
    -webkit-clip-path: inset(2rem);
    clip-path: inset(2rem);
  }
}

footer.footer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url('../img/grass.png');
  background-size: cover;
  image-rendering: pixelated;
}

footer.footer .social-link {
  display: block;
  height: 4rem;
  width: 4rem;
  line-height: 4.3rem;
  font-size: 1.5rem;
  background-color: rgb(30, 115, 25);
  transition: background-color 0.15s ease-in-out;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

footer.footer .social-link:hover {
  background-color: rgba(10, 80, 30, 0.637);
  text-decoration: none;
}

a {
  color: #1D809F;
}

a:hover,
a:focus,
a:active {
  color: #155d74;
}

.btn-primary {
  background-color: #1D809F !important;
  border-color: #1D809F !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #155d74 !important;
  border-color: #155d74 !important;
}

.btn-secondary {
  background-color: #ecb807 !important;
  border-color: #ecb807 !important;
  color: #fff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #ba9106 !important;
  border-color: #ba9106 !important;
}

.btn-dark {
  color: #fff !important;
}

.btn {
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.bg-primary {
  background-color: #1D809F !important;
}

.text-primary {
  color: #1D809F !important;
}

.text-secondary {
  color: #ecb807 !important;
}

.skills-section {
  text-align: center;
}

.skills-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.skill-container,
.skill-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto 20px auto;
}

.skill-logo {
  height: 50px;
  width: auto;
  margin: 8px;
  transition: transform 0.2s ease;
}

.skill-logo:hover {
  transform: scale(1.1);
}


/* Tooltip styles */
.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
}


.tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.timeline {
  position: relative;
  margin: 50px 0;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin: 20px 0;
}

.timeline-content {
  padding: 15px 20px;
  background: #f7f7f7;
  border-left: 4px solid #007bff;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.timeline-content p {
  margin: 5px 0 10px;
  color: #666;
}

.timeline-content ul {
  padding-left: 20px;
  margin: 0;
}

.timeline-content ul li {
  list-style-type: disc;
  margin: 5px 0;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.navbar {
  position: fixed;
  width: 100%;
  background-color: transparent;
  padding: 1rem;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.navbar a:hover {
  color: #ecb807;
  text-decoration: none;
}

.navbar.scrolled {
  background-color: #000000;
}

.navbar .navbar-collapse {
  justify-content: center;
}

.nav-tabs .nav-link {
  color: lightblue;
  font-weight: bold;
}

.nav-tabs .nav-link.active {
  color: black !important;
  background-color: lightblue;
}

.tag {
  display: inline-block;
  background-color: #005eff;
  color: white;
  padding: 5px 10px;
  margin-top: 10px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: bold;
}

#character-stats {
  padding: 50px 0;
}

.strengths-section,
.skills-section,
.timeline-section {
  margin-bottom: 40px;
  text-align: center;
}
.logo {
  margin: 0 10px; /* Space between logos */
}

.logo-klm {
  width: 100px; /* Scale KLM logo */
}

.logo-landmacht {
  width: 140px; /* Scale Landmacht logo */
}

.logo-airfrance {
  width: 150px; /* Scale AirfranceKLM logo */
}

.logo-vpro {
  width: 110px; /* Scale VPRO logo */
}


.skill-logo {
  width: 55px;  /* Adjust size as needed */
  height: auto;
  margin: 0 8px;  /* Adjust spacing between images */
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

