/* #########################
   Global
######################### */
body {
    scroll-behavior: smooth;
    font-family: "JetBrains Mono", monospace;
    background-color: #ffffff;
    color: #0f172a;
}

/* #########################
   Navbar
######################### */
.navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    letter-spacing: 1px;
}

.brand-text {
    font-family: monospace;
}

/* #########################
   Hero
######################### */
.hero {
    background: linear-gradient(135deg, #0d6efd, #020617);
    color: #e5e7eb;
    padding: 7rem 1rem;
}

.hero h1 {
    text-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
}

/* #########################
   Sections
######################### */
.section-padding {
    padding: 5rem 1rem;
}

/* #########################
   Skills
######################### */
.badge-skill {
    margin: 0.3rem;
    font-size: 0.85rem;
    padding: 0.45em 0.7em;
    border-radius: 6px;

    background-color: #0d6efd;
    color: #ffffff;
    border: none;

    transition: all 0.2s ease;
}

.badge-skill:hover {
    background-color: #0a58ca;
    transform: translateY(-2px);
}


/* #########################
   Cards / Projects
######################### */
.card {
    background-color: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.card-title::before {
    content: "> ";
    color: #0d6efd;
}


/* #########################
   Text fixes
######################### */
.text-muted {
    color: #64748b !important;
}

/* #########################
   Links
######################### */
a {
    transition: color 0.2s ease;
}

a:hover {
    color: #0a58ca;
}

/* #########################
   Buttons
######################### */
.btn-light {
    background-color: #ffffff;
    color: #020617;
    border: none;
}

.btn-light:hover {
    background-color: #e5e7eb;
}