/* Landing Page Styles */

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #e0e0e0;
}

.display-4 {
    color: #fff;
    font-weight: 300;
}

.lead {
    color: #a0a0a0;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(13, 110, 253, 0.5);
}

.card-title {
    color: #fff;
}

.card-text {
    color: #b0b0b0;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #fff;
}

.badge.bg-secondary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #a0a0a0;
    font-weight: 400;
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #808080;
}

.card-footer {
    padding: 1rem;
}

footer {
    color: #606060;
}

footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .icon-wrapper i {
        font-size: 1.2rem;
    }
}
