
/* ========== HERO IMAGE SECTION ========== */
.full-screen-bg-image {
    width: 100%;
    min-height: calc(100vh - 70px); /* Ensures the container fills 100% of the viewport height minus the navbar height */
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-screen-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('../assets/home_page_hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: grayscale(80%) sepia(10%) brightness(90%); */
}
.hero-text {
    color: white;
    font: 9vw sans-serif;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    text-shadow: 
        -1px -1px 0 rgba(51, 51, 51, 0.1),  
        1px -1px 0 rgba(51, 51, 51, 0.1),
        -1px 1px 0 rgba(51, 51, 51, 0.1),
        1px 1px 0 rgba(51, 51, 51, 0.1);
}
.hover-text {
    height: 150px;
    opacity: 0; /* Initial opacity */
    transition: opacity 0.6s ease; /* Transition effect */
    cursor: none;
}
.hover-text:hover {
    opacity: 1; /* Opacity when hovered */
}
.dance {
    padding: 0;
    margin: 0;
    display: inline-block;
    border-bottom: 0px solid #fff; /* Initial border thickness */
    animation: borderDance 0.45s ease-in-out infinite alternate;
}
@keyframes borderDance {
    0% {
        border-bottom-width: 0px; /* Initial thickness */
    }
    100% {
        border-bottom-width: 80px; /* Maximum thickness */
    }
}
.scroll-button-container {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: max-content;
    z-index: 2;
}
#scroll-button {
    font-size: 6em;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

/* ========== SERVICES SECTION ========== */
.services-section-ref {
    background-color: transparent;
}
.services-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 5em;
}
.services-content {
    width: 100%;
    margin-top: 3em;
    margin-right: auto;
    margin-left: auto;
    display: flex;
}
.service-container {
    width: 100%;
    padding: 3em;
    margin-right: 2em;
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: black;
}
.service-container:last-child {
    margin-right: 0;
}
.service-container:hover {
    background-color: rgb(243, 243, 243);
}
.service-title {
    text-align: center;
    padding-left: 10px;
    margin: 0;
}
.service-description {
    text-align: center;
    padding-top: 10px;
    margin: 0;
}
.service-container .icon-container {
    display: none;
}
.icon-container {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    display: flex;
}

/* ========== Specific styles for small and medium screens ========== */
@media (max-width: 991.98px) {
    @keyframes borderDance {
        0% {
            border-bottom-width: 0px; /* Initial thickness */
        }
        100% {
            border-bottom-width: 40px; /* Maximum thickness */
        }
    }

    .services-section {
        padding: 2em;
    }
    .services-content {
        display: block;
        margin-top: 2em;
    }
    .service-container {
        background-color: rgb(243, 243, 243);
        padding: 2em;
        margin-right: 0;
        margin-bottom: 2em;
    }
    .service-container .icon-container {
        display: flex;
    }
}
