/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

.line-grow {
    width: 0;
    height: 1px;
    background: var(--color-gold);
    margin: 16px auto;
}

/* Ken Burns Effect */
.ken-burns {
    animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Clip Path Text */
.clip-text {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

/* Parallax */
.parallax-img {
    overflow: hidden;
}

.parallax-img img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    transform: translateY(-10%);
}

/* Decorative Frame */
.image-frame {
    position: relative;
    display: inline-block;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 4px;
}
