/* Custom styles for Maharishi Publishers */

/* Ensure Tailwind classes work properly */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom color classes */
.gold-text { color: #D4AF37; }
.blue-text { color: #1E3A8A; }
.green-text { color: #059669; }
.gold-bg { background-color: #D4AF37; }
.blue-bg { background-color: #1E3A8A; }
.green-bg { background-color: #059669; }

/* Slider styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 384px; /* h-96 equivalent */
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}

/* Form styles */
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Status badge styles */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Timeline styles */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #D1D5DB;
}

.timeline-item.completed:before {
    background-color: #10B981;
}

.timeline-item.in-progress:before {
    background-color: #3B82F6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}