/* Custom Styles for Ortiz David Portfolio */

body {
    background-color: #020617; /* Deepest blue/black */
    color: #f8fafc;
    font-family: 'Inter', -apple-system, sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.btn-secondary:hover {
    background-color: #334155;
    color: white;
}

.tech-card {
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.project-card {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.project-card:hover {
    border-color: #38bdf8;
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.badge {
    background-color: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-sec {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.link {
    color: #38bdf8;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.link:hover {
    color: white;
}