/* Mendal Custom Styles */

/* Smooth animations */
* {
    transition: all 0.3s ease;
}

/* Custom gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #5B4FDB 0%, #00BFA5 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #5B4FDB 0%, #00BFA5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced card hover effects */
.mud-paper {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mud-paper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Custom button styling */
.mud-button-filled.mud-button-filled-primary {
    background: linear-gradient(135deg, #5B4FDB 0%, #4A3EC4 100%);
    box-shadow: 0 4px 15px rgba(91, 79, 219, 0.3);
}

.mud-button-filled.mud-button-filled-primary:hover {
    background: linear-gradient(135deg, #4A3EC4 0%, #3B2FA3 100%);
    box-shadow: 0 6px 20px rgba(91, 79, 219, 0.4);
    transform: translateY(-2px);
}

/* Form enhancements */
.mud-input-outlined .mud-input-outlined-border {
    border-radius: 12px;
}

.mud-text-field:focus-within .mud-input-outlined-border {
    border-color: #5B4FDB;
    box-shadow: 0 0 0 2px rgba(91, 79, 219, 0.1);
}

/* Icon styling */
.mud-icon-root {
    transition: all 0.3s ease;
}

.mud-paper:hover .mud-icon-root {
    transform: scale(1.1);
}

/* Responsive text sizing */
@media (max-width: 768px) {
    .mud-typography-h1 {
        font-size: 2.5rem;
    }
    
    .mud-typography-h3 {
        font-size: 1.75rem;
    }
    
    .mud-typography-h4 {
        font-size: 1.5rem;
    }
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Trust indicators styling */
.trust-indicator {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #5B4FDB 0%, #00BFA5 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4A3EC4 0%, #009688 100%);
}

/* Social links styling */
.mud-link {
    text-decoration: none;
    color: #5B4FDB;
    font-weight: 500;
}

.mud-link:hover {
    color: #00BFA5;
    text-decoration: underline;
}

/* Stats card styling */
.stats-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #5B4FDB 0%, #00BFA5 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(91, 79, 219, 0.3);
}

/* Feature card borders */
.feature-card-primary {
    border-top: 4px solid #5B4FDB;
}

.feature-card-secondary {
    border-top: 4px solid #00BFA5;
}

.feature-card-tertiary {
    border-top: 4px solid #8B5CF6;
}

.mud-main-content {
    padding-top: 0;
}