/* Container: Centers Text & Image */
#transition-container {
    display: flex;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: clamp(49.6%, calc(52.6% + (600px - 100dvh) * 0.05), 60%);
    /* bottom: 40%; */
    z-index: 1000;
}

/* Text Styling */
.transition-text {
    width: 80%;
    font-size: 14px;
    font-family: "ABChanelCorpoLightItal";
    color: black;
    margin-bottom: 10px;
    transition: opacity 0.5s ease-in-out;
}

/* Image Styling */
.transition-image {
    width: auto;
    height: 60px;
    transition: opacity 0.5s ease-in-out;
}

/* Mobile Responsive */
/* @media (max-width: 480px) {
    .transition-text { font-size: 14px; }
    .transition-image { width: 30px; }
} */
