/* Custom styles for PW Saphira */
body {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.8) 100%), url('../assets/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.btn {
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.display-4 {
    font-weight: 300;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.list-group-item {
    border: none;
    background-color: #1a1a1a;
}

.social a {
    transition: color 0.3s ease;
}

.social a:hover {
    color: #ffffff !important;
}