/* Vivid Haze - Custom Styles */

/* Typography improvements */
body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation enhancements */
.navbar-brand {
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #6B46C1 !important;
}

.navbar-nav .nav-link.active {
    color: #6B46C1 !important;
    font-weight: 600;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.15) !important;
}

/* Button enhancements */
.btn {
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-primary {
    background: linear-gradient(45deg, #6B46C1, #8B5CF6);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #553C9A, #7C3AED);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.btn-outline-primary {
    border-color: #6B46C1;
    color: #6B46C1;
}

.btn-outline-primary:hover {
    background-color: #6B46C1;
    border-color: #6B46C1;
    transform: translateY(-2px);
}

/* Form enhancements */
.form-control {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.15);
}

.form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 12px 18px;
}

.form-select:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.15);
}

/* Badge styling */
.badge {
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section spacing adjustments */
section {
    position: relative;
}

/* Image styling */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Gradient text effects */
.display-3, .display-4, .display-5 {
    letter-spacing: -1px;
}

/* Card header styling */
.card-header {
    border-radius: 15px 15px 0 0 !important;
}

/* Shadow enhancements */
.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(107, 70, 193, 0.1) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1.5rem rgba(107, 70, 193, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(107, 70, 193, 0.2) !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}