/* Custom CSS for Red Beard Remedy - Legal Education Website */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom utility classes for brand colors */
.text-burgundy { color: #8B1538; }
.text-gold { color: #FFD700; }
.text-charcoal { color: #36454F; }
.bg-burgundy { background-color: #8B1538; }
.bg-gold { background-color: #FFD700; }
.bg-charcoal { background-color: #36454F; }

/* Gradient backgrounds */
.gradient-burgundy {
    background: linear-gradient(135deg, #8B1538, #A61E4D);
}

.gradient-gold {
    background: linear-gradient(135deg, #FFD700, #FFC107);
}

/* Custom button styles */
.btn-burgundy {
    background-color: #8B1538;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-burgundy:hover {
    background-color: #A61E4D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.btn-gold {
    background-color: #FFD700;
    color: #36454F;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hero section background */
.hero-bg {
    background: linear-gradient(135deg, #8B1538 0%, #A61E4D 50%, #36454F 100%);
}

/* Mobile menu animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Loading animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Document status indicators */
.status-pending {
    color: #F59E0B;
    background-color: #FEF3C7;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-processing {
    color: #3B82F6;
    background-color: #DBEAFE;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-completed {
    color: #10B981;
    background-color: #D1FAE5;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Print styles for legal documents */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-burgundy { color: #000; }
    .bg-burgundy { background-color: #000; }
    .text-gold { color: #000; }
    .bg-gold { background-color: #FFFF00; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.focus-visible:focus {
    outline: 2px solid #8B1538;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B1538;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A61E4D;
}
