body {
}



/* Carousel styling */
#introCarousel,
#introCarousel .carousel-inner,
#introCarousel .carousel-item,
#introCarousel.carousel-item.active {
  height: 85vh;
}

#introCarousel .carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#introCarousel .carousel-item:nth-child(1) {
  background-image: url('/assets/images/heroImage/hero-image-1.jpeg');
}

#introCarousel .carousel-item:nth-child(2) {
  background-image: url('/assets/images/heroImage/hero-image-2.jpeg');
}

#introCarousel .carousel-item:nth-child(3) {
  background-image: url('/assets/images/heroImage/hero-image-3.jpeg');
}

.item-1,
.item-2 {
  background: rgba(0, 0, 0, 0.5);
}

.item-3 {
  background: rgba(8, 0, 18, 0.5);
}

.projectImage { 
  max-width: 300px;
  height: auto;
}

#carousel-container {
  text-align: center;
}

/* Height for devices larger than 992px */
@media (min-width: 992px) {
  #introCarousel {
    margin-top: -58.59px;
  }
}

.navbar {
  background-color: #000;
  padding: 10px 100px !important;
}

.navbar .nav-link {
  color: #fff !important;
}

.navBarImage {
  height: auto !important;
  width: 150px !important;
}

.navbar-nav .nav-item {
  padding: 0 20px;
}

#projects,
#coding-languages,
#iam-blurb {
  padding: 2rem 0;
}

#coding-languages .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

footer {
  position: relative;
  width: 100%;
  bottom: 0;
}

.image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 0;
}

.image-text {
  margin-top: 0;
}

.image-container:hover .javaScriptText {
  color: #ffc107;
}

.image-container:hover .phpText {
  color: #0077cc;
}

.image-container:hover .cSharpText {
  color: #782379;
}

.image-container:hover .swiftText {
  color: #ff5034;
}

.image-container:hover .sqlText {
  color: #35718a;
}

.hover-image {
  display: block;
  height: auto;
  transition: filter 0.3s ease;
  filter: grayscale(100%); /* Make the image grayscale */
  padding: 20px 0 10px 0;
}

.image-container:hover .hover-image {
  filter: grayscale(0); /* Revert to the original color on hover */
}

.col-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.project-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Larger text for paragraphs */
.larger-text {
  font-size: 1.2em; /* Adjust the font size as needed */
}

/* Ensure the images are centered and have some margin */
.IndexIdentityImage {
  margin-top: 15px;
  margin-bottom: 15px;
}


/* Custom CSS for Footer */

/* Ensure the footer text is readable on small devices */
footer p {
  font-size: 1rem; /* Adjust font size as needed */
  margin-bottom: 1rem;
}

/* Ensure the footer links are spaced out and readable */
footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #ffffff;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

/* Ensure the footer image is centered on small devices */
footer img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .col-sm {
    flex: 0 0 50%; /* Two items per row */
    max-width: 50%;
  }
  .hover-image {
    width: 35%; /* Adjust width within the column */
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  .IndexIdentityImage {
    display: none !important;
  }
  #iam-blurb .col-md-8 {
    margin-left: 15px;
    margin-right: 15px;
  }
  #iam-blurb .col-md-4 {
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .col-sm {
    flex: 0 0 33.33%; /* Three items per row */
    max-width: 33.33%;
  }
  .hover-image {
    width: 45%; /* Adjust width within the column */
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  .JavaDiv {
    display: none;
  }
  .IndexIdentityImage {
    display: none !important;
  }
  footer .col-lg-6,
  footer .col-lg-3 {
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hover-image {
    width: 60%; /* 60% width on medium devices */
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hover-image {
    width: 50%; /* 50% width on large devices */
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hover-image {
    width: 50%; /* 50% width on extra large devices */
  }
}