html {
    font-size: 14px;
}

/* Navbar Mobile */
.navbar {
    height: 40px;
}

.navbar-container {
    padding: 0 0.5rem;
}

.navbar-logo h1 {
    font-size: 0.85rem;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 40px;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease-in-out;
    gap: 0;
    padding: 0.2rem 0;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 89;
}

.nav-menu.active {
    left: 0;
}

.nav-item {
    height: auto;
    line-height: auto;
    padding: 0.3rem 0;
}

.nav-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
    display: block;
}

.hamburger {
    display: flex !important;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    flex-direction: column;
    gap: 3px;
    padding: 5px;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.toggle-line {
    width: 20px;
    height: 2px;
    background: #2A6DFD;
    border-radius: 3px;
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block;
}

#hamburger.open {
    transform: translateY(-50%) rotate(180deg);
}

#hamburger.open .toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
    width: 22px;
}

#hamburger.open .toggle-line:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

#hamburger.open .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
    width: 22px;
}

#hero {
    padding-top: 40px;
}

#about .col-2 #about-image {
    margin-left: 0;
    margin-top: 0;
    width: 90%;
}

#contact .row .left div{
    width: 200%;
    transform: translateX(-25%);
}

/* Skills Mobile */
.skills-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.skill {
    margin-bottom: 1rem;
}

.skill h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.proggress {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: flex-start;
}

.status {
    color: #2A6DFD !important;
    font-size: 0.85rem;
    min-width: 40px;
}

.skill-bar-container {
    width: calc(100% - 50px) !important;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    width: 0;
    background-color: #2A6DFD;
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}
