.header-transparent {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-black {
    background-color: var(--bs-black);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
}

.logo img {
    width: auto;
    height: 80px;
    margin-right: 35px;
}

@media (max-width: 480px) {
    .logo img {
        height: 70px;
        margin-right: 40px;
    }
}

header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.sticky-header.sticky-active {
    background-color: var(--bs-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Other sticky sections */
.sticky-section-active {
    background-color: var(--bs-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding-top: 15px;
    transition: all 0.3s ease;
}

/* Optional padding animation for inner elements */
.sticky-padding,
.sticky-padding-top {
    padding-top: 20px !important;
    transition: padding 0.3s ease;
}