body {
    background-color: #f8adb1;
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
}

.bh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.bh-logo-container {
    display: flex;
    align-items: center;
}

.bh-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bh-logo-img {
    height: 3.7rem; 
    width: auto;
    display: block;
}

.bh-nav {
    display: flex;
    gap: 40px;
}

.bh-nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 410;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.bh-nav-link:hover, .bh-active {
    opacity: 0.6;
}

.bh-lang-selector {
    font-size: 0.9rem;
    font-weight: 650;
}

.works-archive-wrapper {
    max-width: 900px;
    margin: 180px auto 100px auto; 
    padding: 0 5%;
}

.archive-title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 60px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.works-list-container {
    display: flex;
    flex-direction: column;
}

.work-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    padding-left: 15px;
    background-color: rgba(255,255,255,0.1);
}

.work-year {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(0,0,0,0.6);
}

.work-title {
    font-size: 1.4rem;
    font-weight: 410;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-status {
    font-size: 0.7rem;
    text-align: right;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 1px;
}

.footer-spacer {
    margin-top: 100px;
    text-align: center;
    padding-bottom: 60px;
}

.back-link-about {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease; 
}

/*ajustes para fon*/
@media (max-width: 768px) {
    
    .bh-header {
        padding: 15px 20px;
    }

    .bh-logo-img {
        height: 2.8rem; 
    }

    .bh-nav {
        gap: 15px;
    }

    .bh-nav-link {
        font-size: 0.85rem;
    }

    .works-archive-wrapper {
        margin: 120px auto 60px auto; 
        padding: 0 6%;
    }

    .archive-title {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    .work-item {
        grid-template-columns: 60px 1fr;
        padding: 20px 0;
    }

    .work-status { 
        display: none; 
    } 

    .work-year {
        font-size: 0.8rem;
    }

    .work-title { 
        font-size: 1.1rem; 
        letter-spacing: 0.5px;
    }

    .work-item:hover {
        padding-left: 0;
        background-color: transparent;
    }
}
