/* Custom Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, rgba(74, 44, 49, 0.4) 0%, rgba(255, 107, 139, 0.4) 100%), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Background Pattern */
.bg-pattern {
    background-color: #fff0f5;
    background-image: radial-gradient(#ff6b8b 0.5px, transparent 0.5px), radial-gradient(#ff6b8b 0.5px, #fff0f5 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Lightbox Styles */
#lightbox {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#lightbox.active {
    opacity: 1;
    visibility: visible;
}
#lightbox-img {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
#lightbox.active #lightbox-img {
    transform: scale(1);
}
.zoom-cursor {
    cursor: zoom-in;
}
