.homepage-hero {
    background: url('/static/home-hero.png');
    min-height: 780px;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-size: 60px !important;
}

.btn-outline-white {
    color: white;
    border: 1px solid white;
  }
.btn-outline-white:hover {
    background-color: white;
    color: black;
}

.btn-red-dark {
    background-color: #AF1124 !important;
    color: #fff;
    padding: 4px 16px;
}

.btn-red-dark:hover {
    color: #fff;
}

.project-wrapper {
    position: relative;
    transition: background-color 0.3s ease;
}

.project-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080; /* Default overlay color (semi-transparent) */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.project-wrapper .project-action {
    cursor: pointer;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080; /* Default overlay color (semi-transparent) */
    transition: opacity 0.3s ease;
}

.project-wrapper:hover .project-action {
    background-color: #000000d0; 
    opacity: 1;
    cursor: pointer;
    z-index: 1;
}

.project-item {
    text-align: left;
    color: #fff;
    padding: 16px;
    height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.project-action {
    cursor: pointer;
    position: absolute;
    height: 100%;
    color: white;
    text-align: center;
    border-radius: 8px;
}

.section-3 {
    /* margin-top: 200px; */
}

@media screen and (max-width: 768px) {
    /* Styles for screens 768px and wider */
    .section-3 {
        /* margin-top: 25rem; */
    }
  }
  