/* Custom Indian Art Styling */
body {
    background-color: #FDFBF7;
}

.indian-border {
    border: 2px solid #D4AF37;
    border-radius: 8px;
    position: relative;
}

.indian-border::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px dashed #B9382E;
    pointer-events: none;
    border-radius: 4px;
}

.paisley-bg {
    background-color: #B9382E;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px), radial-gradient(#D4AF37 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Decorative Divider */
.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: #D4AF37;
}
.divider-icon::before, .divider-icon::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #D4AF37;
    margin: 0 1rem;
}

/* Loading Spinner */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #B9382E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7; 
}
::-webkit-scrollbar-thumb {
    background: #D4AF37; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B9382E; 
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(185, 56, 46, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animation Classes for Scroll Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
