/* Custom Styles for Olum Carnival */

/* Scrollbar Hide */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Gradient Overlays */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(252,250,248,1));
    z-index: 1;
}

.dark .gradient-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(28,20,13,1));
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image Zoom on Hover */
.image-zoom-container {
    overflow: hidden;
}

.image-zoom {
    transition: transform 0.7s ease;
}

.image-zoom-container:hover .image-zoom {
    transform: scale(1.1);
}

/* Offcanvas Transitions */
#mobile-offcanvas {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-backdrop {
    transition: opacity 0.3s ease;
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #f48c25 0%, #ff6b35 100%);
    box-shadow: 0 10px 30px rgba(244, 140, 37, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(244, 140, 37, 0.4);
}

/* Loading Animation */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.animate-pulse {
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Section Spacing */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Text Shadows */
.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.text-shadow-md {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.text-shadow-lg {
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.text-shadow-xl {
    text-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
