/* Custom Styles for SwiftDelivery */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --background-color: #0d6efd;
}


body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #667eea !important;
}
.navbar-brand i {
    font-size: 2rem;
}
.nav-link {
    font-weight: 600;
    color: #2d3748 !important;
    transition: color 0.3s ease;
    margin-left: 5px;
    margin-right: 5px;
}
.nav-link:hover {
    color: #667eea !important;
}
.nav-link.active {
    color: #667eea !important;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}
.cms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.brand-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}
.brand-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.brand-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}
.admin-card .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.warehouse-card .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}
.customer-card .card-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}
.card-body {
    padding: 40px 30px;
    text-align: center;
}
.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}
.card-text {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.6;
}
.btn-access {
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-card .btn-access {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.warehouse-card .btn-access {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}
.customer-card .btn-access {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}
.btn-access:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.footer {
    text-align: center;
    color: white;
    margin-top: 60px;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .brand-header h1 {
        font-size: 2rem;
    }
    .card-body {
        padding: 30px 20px;
    }
}