/* This is the CSS to customize the Bootstrap components */


/* This is the CSS to modify the Nav bar */

.customNav {
    position: fixed;
    width: 100%;
    background-color: rgb(128, 123, 123);
    background-size: cover;
    z-index: 10;
    background:linear-gradient(0deg, rgba(134, 94, 118, 0.3), rgba(85, 80, 83, 0.3));
    background-size:cover;
  }
  .navbar-nav {
    margin-left: auto;
    margin-right: 0 !important;
  }
  .navbar-brand {
    margin-left: 10px;
  
  }
  .nav-item {
    margin: 0px 15px;
  }

  
  /* Navigation dropdown menu */
  .dropdown-menu {
    background-color: rgb(128, 123, 123)!important;
    min-height:100%;
    background-size: cover;
  }

  .dropdown-item:focus, .dropdown-item:hover {
    background-color: rgb(182, 180, 180);
    color: rgb(253, 251, 251);
    text-decoration: none;
      
  }
  
  .navCTA {
    font-size: 15px;
  }

/* This is the CSS to modify the Hero Banner */


/* Jumbotron containing the binary code animation */
.codeBackground {
    background-image: url(../images/binary-code-background.gif);
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(70vh - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
 
  }
 
  /* Jumbotron copy containing the cool motto*/
  .jumboCopy {
    width: 70%;
    max-width: 900px;
    color: white;
    text-align: center;
    margin-top: 20px;
    background-size: cover;
    background:linear-gradient(0deg, rgba(134, 94, 118, 0.3), rgba(85, 80, 83, 0.3));
  }

/* This is the CSS to modify the Work section starting from the title h3 to the cards margins and hover effects */

.workTitle h3{
  display: flex;
  text-align: center;
  margin-left: 100px;
}

.card {
    margin: 15px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  opacity: 1;
  transition: opacity 0.3s ease; /* This adds a transition for smooth visibility change */
  pointer-events: none; /* Ensures the overlay doesn't interfere with mouse events */
}

.card:hover::before {
  opacity: 0; /* When hovering, the overlay becomes transparent */
}

.cardLabel .card-img-overlay{
    margin-top: 200px;
    display: flex;
    align-items: flex-end;
}

/* This styles the buttons of the cards */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #676d75;
    --bs-btn-border-color: #70757c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a9acb1;
    --bs-btn-hover-border-color: #9ca4af;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #36393d;
    --bs-btn-active-border-color: #42464d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
}

/* This is the CSS to modify the About Me section */

.about {
    margin-top: 50px;
    margin-bottom: 50px;
}

.about img {
    width: 150px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* This is the CSS to modify the Skills section */


.skills {
    margin-top: 50px;
    margin-bottom: 50px;
}

#skillsList {
    font-weight: bold;
    text-align: center;   
}

/* This section is dedicated to the CSS that styles the footer which contains the Contacts links bar */

footer {
  margin: auto;
  width: 100%; 
  padding: 50px;
  font-family: sans-serif; 
  color: rgb(253, 250, 250);  
  background-color: #54595c;  
  text-align: center;
}

footer p {
    margin-top: 25px;
}


footer a {
    color: white;
}

h3 .works{
    display: flex;
    color: #42464d;
    border-left: #36393d;
}


h5 {
    margin-top: 15px;
    margin-bottom: 15px;
}
 
footer .nav-link {
    display: block;
    color: #e9e9e9;
    text-decoration: none;
    background: 0 0;
    border: 0;
}


footer .nav-link {
    --bs-nav-link-hover-color: grey;
    text-shadow: #525355;
    box-shadow: #7f8081;
    
}

/* The following CSS is responsible for the hover effect and shadow of the footer contact links */

footer a:link, a:visited {
  background-color: rgb(160, 159, 159);
  color: black;
  border: 1px solid rgb(62, 62, 65);
  padding: 20px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

footer a:hover {
  background-color: rgb(122, 122, 122);
  color: rgb(255, 255, 255)!important;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}



  