
/* Additional custom styles for Tarang website */
:root {
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #1a1a1a;
}
.container {
    width:100;
    margin: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Video background optimization */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Gallery hover effects */
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Button hover effects */
.btn-gold {
    background: var(--primary-gold);
    color: var(--black);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Loading animation for images */
.loading-placeholder {
    background: linear-gradient(90deg, #1a1a1a 25%, #333 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .animate-scroll {
        animation-duration: 20s;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 0.75rem;
    }

}
