/* Custom styles to supplement Bootstrap */

/* App name styling - make it prominent */
.app-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Tagline styling */
.app-tagline {
    font-size: 1.1rem;
    color: var(--bs-gray-400);
    margin-bottom: 2rem;
}

/* Page title styling */
.page-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--bs-light);
    margin-bottom: 1rem;
}

/* Page subtitle */
.page-subtitle {
    font-size: 1rem;
    color: var(--bs-gray-500);
    margin-bottom: 2rem;
}

/* Step cards styling */
.step-card {
    background: var(--bs-dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.step-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.75rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-light);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* Search section with enhanced styling */
.search-section-enhanced {
    background: linear-gradient(135deg, var(--bs-dark) 0%, rgba(33, 37, 41, 0.95) 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.search-section-enhanced:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Additional spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Divider between sections */
.section-divider {
    height: 2rem;
    border: none;
    margin: 0;
}

/* Form validation styling */
.symptoms-container.is-invalid {
    border: 1px solid var(--bs-danger);
    border-radius: 0.375rem;
    padding: 0.5rem;
}

.form-text {
    color: var(--bs-secondary);
}

/* Card styling */
.medication-card {
    height: 100%;
    transition: transform 0.2s;
}

.medication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Badge styling */
.badge-symptom {
    background-color: var(--bs-info);
    color: var(--bs-dark);
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.badge-condition {
    background-color: var(--bs-warning);
    color: var(--bs-dark);
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.badge-contraindication {
    background-color: var(--bs-danger);
    color: white;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Disclaimer box */
.disclaimer-box {
    background-color: var(--bs-dark);
    border-left: 4px solid var(--bs-info);
    color: var(--bs-light);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.375rem;
}

/* Loading spinner */
.loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-name {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .header-title {
        font-size: 1.75rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}
