body {
    background-color: #0d0d0f;
    color: #fff;
    font-family: "Segoe UI", sans-serif;
}

.navbar {
    background-color: rgba(13,13,15,0.95);
}

.navbar-brand span {
    color: #cf9300;
}

#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #0d0d0f, #1a1a1d);
}

#hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

#hero p {
    color: #aaa;
    margin-top: 0.625rem;
}

.btn-primary {
    background-color: #6C63FF;
    border: none;
}

.btn-primary:hover {
    background-color: #564fcf;
}

.card {
    background-color: #1a1a1d;
    color: #fff;
    border: none;
    transition: transform 0.3s;
}

.card-img-top {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
}

.card:hover {
    transform: translateY(-0.3125rem);
}

footer {
    background-color: #1a1a1d;
    padding: 1.25rem 0;
    text-align: center;
    color: #aaa;
    margin-top: 2.5rem;
}

.link {
    text-decoration: none;
    color: inherit;
    font-size: 1.5625rem;
    text-indent: 0.3125rem;
}

.link:hover {
    color: #cf9300;
}

.modal-content {
    background-color: #1a1a1d;
    color: #fff;
    border: none;
}

.modal-header {
    border-bottom: 0.0625rem solid #333;
}

.modal-footer {
    border-top: 0.0625rem solid #333;
}

.btn-close {
    filter: invert(1);
}

.modal-body h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-body h6 {
    color: #cf9300;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.modal-body p {
    color: #ccc;
    line-height: 1.6;
}

.modal-body ul {
    color: #ccc;
}

.modal-body ul li {
    margin-bottom: 0.3rem;
}

.text-muted {
    color: #888 !important;
}

#modalprojectlinks .btn {
    height: 2.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-footer .btn {
    height: 2.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 0.375rem;
    background-color: #cf9300;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -0.1875rem;
}

.timeline-item {
    padding: 0.625rem 2.5rem;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 1.5625rem;
    height: 1.5625rem;
    right: -0.8125rem;
    background-color: #cf9300;
    border: 0.25rem solid #1a1a1d;
    top: 0.9375rem;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -0.8125rem;
}

.timeline-content {
    padding: 1.25rem 1.875rem;
    background-color: #1a1a1d;
    position: relative;
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.3);
}

.timeline-content h4 {
    margin-top: 0;
    color: #cf9300;
    font-size: 1.25rem;
}

.timeline-content .date {
    color: #aaa;
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}