body {
    font-family: 'Figtree', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.badge, .nav-link, .mono{ 
    font-family: 'Source Code Pro', monospace;
}

.nav-link {
    color: #fff;
    transition: background 0.2s, color 0.2s;
}

.nav-link:visited {
    color: #fff;
}

.nav-link:hover,
.nav-link:focus {
    background: #232323;
    color: #fff;
}

.nav-link.active {
    background: #fff;
    color: #161616;
    border-color: #161616;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow-y: auto;
}

.main-content {
    margin-left: 260px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        left: -260px;
        transition: left 0.3s ease;
        width: 260px !important;
        min-width: 260px !important;
    }

    .sidebar.show {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .sidebar-overlay.show {
        display: block;
    }
}


/* Online Status */
.online-indicator,
.offline-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.online-indicator {
    background-color: #28a745;
}

.offline-indicator {
    background-color: #dc3545;
}

/* Project Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Skills */
.text-purple {
    color: #7952b3;
}

/* Sortable focus effect */
.skills-dragging .skill-item:not(.sortable-chosen) {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}


@media (max-width: 767.98px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item::before {
        left: 40px;
    }

    .timeline-item .col-md-6 {
        margin-left: 80px !important;
    }
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: none;
}

#back-to-top:hover {
    transform: translateY(-3px);
}

#back-to-top:hover {
    transform: translateY(-3px);
}

#btn-cv-download {
    padding: 0.1em 0.25em;
    width: 13em;
    height: 4.2em;
    background-color: #212121;
    border: 0.08em solid #fff;
    border-radius: 0.3em;
    font-size: 12px;
    cursor: pointer;
}

#btn-cv-download span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.4em;
    width: 8.25em;
    height: 2.5em;
    background-color: #212121;
    border-radius: 0.2em;
    font-size: 1.5em;
    color: #fff;
    border: 0.08em solid #fff;
    box-shadow: 0 0.4em 0.1em 0.019em #fff;
}

#btn-cv-download span:hover {
    transition: all 0.5s;
    transform: translate(0, 0.4em);
    box-shadow: 0 0 0 0 #fff;
}

#btn-cv-download span:not(hover) {
    transition: all 1s;
}

@media (min-width: 992px) {
  .responsive-vh {
    min-height: 100vh;
  }
}

/* Main content scroll behavior */
.main-scroll-container {
    scroll-behavior: smooth;
}

