@charset "UTF-8";

:root {
    --bs-body-font-family: "Source Sans 3", sans-serif;
    --site-serif: "Libre Baskerville", serif;
    --site-bg: #0d1117;
    --site-bg-soft: #111827;
    --site-panel: #161d2a;
    --site-panel-2: #1b2433;
    --site-border: rgba(255, 255, 255, 0.08);
    --site-text: #e8edf5;
    --site-muted: #aab6c8;
    --site-accent: #7cc4ff;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(124, 196, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #0b1016 0%, var(--site-bg) 35%, #0e1420 100%);
    color: var(--site-text);
}

a {
    color: var(--site-accent);
}

a:hover {
    color: #a9d9ff;
}

.site-navbar {
    background: rgba(13, 17, 23, 0.88);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-family: var(--site-serif);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-link {
    color: var(--site-muted);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--bs-white);
}

.hero-title,
.section-title {
    font-family: var(--site-serif);
    line-height: 1.15;
    text-wrap: balance;
}

.hero-title {
    max-width: 9ch;
}

.hero-lead,
.section-copy,
.card p,
.card li {
    color: var(--site-muted);
}

.section-kicker,
.note-label {
    letter-spacing: 0.16em;
    color: #8fb6d8;
}

.profile-card,
.section-card,
.info-card,
.project-card,
.link-card {
    background: linear-gradient(180deg, rgba(27, 36, 51, 0.96), rgba(20, 27, 38, 0.96));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.profile-image {
    display: block;
    width: min(100%, 22rem);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.03);
}

.profile-note {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--site-border);
    color: var(--site-muted);
}

.section-band {
    background: rgba(255, 255, 255, 0.02);
}

.info-card,
.project-card,
.link-card,
.section-card,
.profile-card {
    border: 1px solid var(--site-border) !important;
}

.project-link {
    color: var(--site-accent);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

.project-link:hover {
    color: #a9d9ff;
}

.project-card ul {
    padding-left: 1.15rem;
}

.link-card {
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.link-card span {
    color: var(--site-accent);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 196, 255, 0.28) !important;
    background: linear-gradient(180deg, rgba(31, 43, 61, 0.98), rgba(21, 30, 44, 0.98));
}

.btn-primary {
    --bs-btn-bg: #2f6ea5;
    --bs-btn-border-color: #2f6ea5;
    --bs-btn-hover-bg: #3b7fbb;
    --bs-btn-hover-border-color: #3b7fbb;
    --bs-btn-active-bg: #285f8d;
    --bs-btn-active-border-color: #285f8d;
}

.btn-outline-light {
    --bs-btn-hover-color: #0d1117;
}

footer {
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 0.9rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--site-border);
    }

    .hero-title {
        max-width: none;
    }

}

@media (max-width: 575.98px) {
    .hero-lead {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1.25rem !important;
    }
}
