/* body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: 'PingFang TC', sans-serif;
    color: #fff;
    overflow: hidden;
} */
.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-wall {
    position: absolute;
    width: 150vw;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transform: rotate(-6deg);
}
.slide-track {
    display: flex;
    align-items: center;
    height: 33%;
    width: max-content;
}
.slide-track img {
    width: auto;
    height: 100%;
    object-fit: cover;
    margin-right: 25px;
    border-radius: 3px;
}
.slide-track img[alt="logo"] {
    height: 55%;
}
.text-item {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    margin-right: 25px;
    font-family: 'PT Serif', serif;
    font-style: italic;
    font-size: 26px;
    color: #fcba62;
    white-space: nowrap;
}
.track-right {
    animation: scrollRight 40s linear infinite;
}
.track-left {
    animation: scrollLeft 35s linear infinite;
}
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(0,0,0,0.8);
    animation: fadeInOverlay 0.5s forwards 3s;
    padding: 0 1rem;
}
@keyframes fadeInOverlay {
    to { opacity: 1; }
}
.overlay img.logo {
    height: 70px;
    width: auto;
    animation: logoFade 0.5s forwards 3s;
}
@keyframes logoFade {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.explore-btn {
    padding: 5px 20px;
    background: #fcba62;
    border: none;
    border-radius: 30px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    animation: btnFade 0.5s forwards 3s;
    line-height: 1.7em;
    white-space: nowrap;
}
@keyframes btnFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.desktop-slogan {
    color: #fff2e1;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    opacity: 0;
    animation: btnFade 0.5s forwards 3.2s;
}
@media (max-width: 768px) {
    .overlay img.logo {
        height: 50px;
        width: auto;
        animation: logoFade 0.5s forwards 3s;
    }
    .desktop-slogan {
        display: none;
    }
}
