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;
}

.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; 
}

.back-link-about:hover {
    opacity: 0.5;
    transform: translateX(-5px);
    cursor: pointer;
}

.film-single-container {
    max-width: 1000px;
    margin: 180px auto 100px auto;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
}

.film-large-title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 6rem); 
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 50px;
    margin-top: 0;
    line-height: 1;
}

.film-biography-text {
    max-width: 800px;
}

.film-biography-text p {
    font-family: "Outfit", sans-serif;
    font-weight: 410;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.film-biography-text strong {
    font-weight: 600;
}

.film-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.film-social-item {
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    color: #000;
    font-weight: 410;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity 0.3s;
}

.film-social-item:hover {
    opacity: 0.5;
}

.archive-footer {
    margin-top: 100px;
    text-align: center;
}

.film-content-grid {
    display: flex;
    gap: 40px; 
    align-items: flex-start; 
    margin-bottom: 30px; 
}

.film-biography-text {
    flex: 2; 
    max-width: none; 
}

.film-biography-image {
    flex: 1; 
    display: flex;
    justify-content: center;
}

.film-image-stills {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.bh-modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.bh-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 4px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #f8adb1;
}

/*para el 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.8rem;
        letter-spacing: 0.5px;
    }

    .film-single-container {
        margin: 120px auto 60px auto;
        padding: 0 6%;
    }

    .film-large-title {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
        margin-bottom: 30px;
    }

    .film-content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .film-biography-text,
    .film-biography-image {
        flex: none;
        width: 100%;
    }

    .film-biography-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .film-biography-image {
        order: -1;
        margin-bottom: 10px;
    }

    .film-social-links {
        gap: 20px;
        margin-top: 40px;
        padding-top: 25px;
        justify-content: center;
    }

    .film-social-item {
        font-size: 0.85rem;
    }

    .bh-modal-content {
        width: 95%;
    }

    .close-btn {
        top: -50px;
        right: 10px;
        font-size: 35px;
    }
}