/* Shadow Vault Recovery - Custom Styles */

/* Global Styles */
:root {
    --primary-color: #4e73df;
    --secondary-color: #1cc88a;
    --dark-color: #2e3951;
    --light-color: #f8f9fc;
    --danger-color: #e74a3b;
    --warning-color: #f6c23e;
    --info-color: #36b9cc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fc;
}

/* Header & Navigation */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-dark {
    background-color: var(--dark-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(46, 57, 81, 0.9), rgba(46, 57, 81, 0.9)), url('../img/crypto-bg.svg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 100px 0;
    margin-top: -48px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 57, 81, 0.8);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Cards & Boxes */
.feature-box {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    background-color: white;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Client Portal Styles */
.dashboard-card {
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 20px;
}

.dashboard-card.success {
    border-left-color: var(--secondary-color);
}

.dashboard-card.warning {
    border-left-color: var(--warning-color);
}

.dashboard-card.danger {
    border-left-color: var(--danger-color);
}

.dashboard-card.info {
    border-left-color: var(--info-color);
}

.progress-tracker {
    position: relative;
    margin: 30px 0;
}

.progress-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    z-index: 1;
}

.step-number.active {
    background-color: var(--primary-color);
    color: white;
}

.step-number.completed {
    background-color: var(--secondary-color);
    color: white;
}

.progress-line {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.progress-line.filled {
    background-color: var(--secondary-color);
}

/* Admin Portal Styles */
.admin-sidebar {
    background-color: var(--dark-color);
    min-height: calc(100vh - 56px);
    color: rgba(255, 255, 255, 0.8);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white;
    border-left-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4262c5;
    border-color: #3d5cb9;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Document Upload */
.upload-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary-color);
}

.upload-area i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}